Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
abelanger5 committed Jan 28, 2025
2 parents 49f000e + ad1aff3 commit 3e75d41
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -351,25 +351,25 @@ export function WorkflowRunsTable({
const workflowRunStatusFilters = useMemo((): FilterOption[] => {
return [
{
value: WorkflowRunStatus.SUCCEEDED,
value: V2TaskStatus.COMPLETED,
label: 'Succeeded',
},
{
value: WorkflowRunStatus.FAILED,
value: V2TaskStatus.FAILED,
label: 'Failed',
},
{
value: WorkflowRunStatus.RUNNING,
value: V2TaskStatus.RUNNING,
label: 'Running',
},
{
value: WorkflowRunStatus.QUEUED,
value: V2TaskStatus.QUEUED,
label: 'Queued',
},
{
value: WorkflowRunStatus.PENDING,
label: 'Pending',
},
// {
// value: V2TaskStatus.CANCELLED,
// label: 'Cancelled',
// },
];
}, []);

Expand Down

0 comments on commit 3e75d41

Please sign in to comment.