Skip to content

Commit e2febff

Browse files
authored
fix(data): Fix workflow data linting (#3160)
Signed-off-by: Javier Rodriguez <javier@chainloop.dev>
1 parent 3739bcd commit e2febff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/controlplane/pkg/data/workflow.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ func (r *WorkflowRepo) SoftDelete(ctx context.Context, id uuid.UUID) (err error)
493493

494494
func entWFToBizWF(ctx context.Context, w *ent.Workflow) (*biz.Workflow, error) {
495495
wf := &biz.Workflow{Name: w.Name, ID: w.ID,
496-
CreatedAt: toTimePtr(w.CreatedAt), Team: w.Team,
496+
CreatedAt: toTimePtr(w.CreatedAt), Team: w.Team,
497497
RunsCounter: w.RunsCount,
498498
Public: w.Public,
499499
Description: w.Description,

0 commit comments

Comments
 (0)