Skip to content
This repository was archived by the owner on Jan 27, 2026. It is now read-only.

Commit 358dbfd

Browse files
authored
fix(orchestrator): filter workflow runs by status (#2520)
Fixes: FLPATH-1851 Signed-off-by: Marek Libra <mlibra@redhat.com>
1 parent e94a6c1 commit 358dbfd

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/pretty-avocados-talk.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@janus-idp/backstage-plugin-orchestrator": patch
3+
---
4+
5+
Fix filtering by status on the Workflow Runs tab.

plugins/orchestrator/src/components/WorkflowRunsTabContent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export const WorkflowRunsTabContent = () => {
101101
(value ?? []).filter(
102102
(row: WorkflowRunDetail) =>
103103
statusSelectorValue === Selector.AllItems ||
104-
row.status === statusSelectorValue,
104+
row.status?.toUpperCase() === statusSelectorValue,
105105
),
106106
[statusSelectorValue, value],
107107
);

0 commit comments

Comments
 (0)