Return proper filter var when doing wf search

This commit is contained in:
Denis Arh
2021-04-01 21:10:51 +02:00
parent b5e6683c44
commit b8ab385a0f
+1 -1
View File
@@ -147,7 +147,7 @@ func (svc *workflow) Search(ctx context.Context, filter types.WorkflowFilter) (r
return nil
}()
return rr, filter, svc.recordAction(ctx, wap, WorkflowActionSearch, err)
return rr, f, svc.recordAction(ctx, wap, WorkflowActionSearch, err)
}
func (svc *workflow) LookupByID(ctx context.Context, workflowID uint64) (wf *types.Workflow, err error) {