Skip to content

Commit

Permalink
fix: UI Filter by status for pipelines doesn't work as expected (#1444)
Browse files Browse the repository at this point in the history
Signed-off-by: Nishchith Shetty <[email protected]>
(cherry picked from commit 70c78e7)
  • Loading branch information
inishchith authored and whynowy committed Jan 13, 2024
1 parent c06de95 commit 855672d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export function PipelineListing({
if (statusFilter !== ALL) {
filtered = filtered.filter((p) => {
const currentStatus = p?.pipeline?.status?.phase || UNKNOWN;
if (currentStatus.toLowerCase() === status.toLowerCase()) {
if (currentStatus.toLowerCase() === statusFilter.toLowerCase()) {
return true;
} else {
return false;
Expand Down

0 comments on commit 855672d

Please sign in to comment.