Skip to content

Commit

Permalink
Remove unnecessary identifiers from WorkflowInstanceList
Browse files Browse the repository at this point in the history
The WorkflowInstanceList no longer checks against the workflow definition's description, ID, and definition ID. This change simplifies the search functionality and focuses on only the workflows' names, which should facilitate user experience and search efficiency.
  • Loading branch information
sfmskywalker committed Feb 21, 2024
1 parent bdcaa49 commit 635e854
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,6 @@ private bool FilterWorkflowDefinitions(WorkflowDefinitionSummary workflowDefinit
var sources = new[]
{
workflowDefinition.Name,
workflowDefinition.Description,
workflowDefinition.Id,
workflowDefinition.DefinitionId
};

return sources.Any(x => x?.Contains(trimmedTerm, StringComparison.OrdinalIgnoreCase) == true);
Expand Down

0 comments on commit 635e854

Please sign in to comment.