We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1022080 commit 24fab4bCopy full SHA for 24fab4b
web/src/routes/table-level/TableLineageJobNode.tsx
@@ -122,10 +122,9 @@ const TableLineageJobNode = ({ node }: TableLineageJobNodeProps & StateProps) =>
122
width={24}
123
sx={{
124
rx: 4,
125
- fill:
126
- node.data.job.latestRun?.state === 'COMPLETED'
127
- ? theme.palette.primary.main
128
- : theme.palette.error.main,
+ fill: node.data.job.latestRun
+ ? runStateColor(node.data.job.latestRun.state)
+ : theme.palette.secondary.main,
129
}}
130
/>
131
<FontAwesomeIcon
0 commit comments