Skip to content

Commit

Permalink
update popover tasks list to only show status for runs
Browse files Browse the repository at this point in the history
  • Loading branch information
jenny-s51 committed Apr 30, 2024
1 parent ad43934 commit fa4c00a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions frontend/src/concepts/topology/PipelineDefaultTaskGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,11 @@ const DefaultTaskGroupInner: React.FunctionComponent<PipelinesDefaultGroupInnerP
{items.map((item: Node) => (
<StackItem key={item.getId()}>
<Flex gap={{ default: 'gapXs' }}>
{element.getData()?.runStatus &&

Check failure on line 44 in frontend/src/concepts/topology/PipelineDefaultTaskGroup.tsx

View workflow job for this annotation

GitHub Actions / Tests (18.x)

Replace `{element.getData()?.runStatus·&&` with `··{element.getData()?.runStatus·&&·(`
<FlexItem>

Check failure on line 45 in frontend/src/concepts/topology/PipelineDefaultTaskGroup.tsx

View workflow job for this annotation

GitHub Actions / Tests (18.x)

Insert `··`
<NodeStatusIcon runStatus={item.getData()?.runStatus} />

Check failure on line 46 in frontend/src/concepts/topology/PipelineDefaultTaskGroup.tsx

View workflow job for this annotation

GitHub Actions / Tests (18.x)

Replace `················` with `··················`
</FlexItem>

Check failure on line 47 in frontend/src/concepts/topology/PipelineDefaultTaskGroup.tsx

View workflow job for this annotation

GitHub Actions / Tests (18.x)

Insert `··`
}

Check failure on line 48 in frontend/src/concepts/topology/PipelineDefaultTaskGroup.tsx

View workflow job for this annotation

GitHub Actions / Tests (18.x)

Insert `··)`
<FlexItem>{item.getLabel()}</FlexItem>
</Flex>
</StackItem>
Expand Down

0 comments on commit fa4c00a

Please sign in to comment.