Skip to content

Commit

Permalink
fix(orchestrator): filter workflow runs by status
Browse files Browse the repository at this point in the history
Fixes: FLPATH-1851

Signed-off-by: Marek Libra <[email protected]>
  • Loading branch information
mareklibra committed Nov 12, 2024
1 parent e94a6c1 commit 6a5a7ed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export const WorkflowRunsTabContent = () => {
(value ?? []).filter(
(row: WorkflowRunDetail) =>
statusSelectorValue === Selector.AllItems ||
row.status === statusSelectorValue,
row.status.toUpperCase() === statusSelectorValue,
),
[statusSelectorValue, value],
);
Expand Down

0 comments on commit 6a5a7ed

Please sign in to comment.