Skip to content

Commit

Permalink
Merge branch 'main' into fix/null-run-jobversion
Browse files Browse the repository at this point in the history
  • Loading branch information
perttus authored Apr 17, 2023
2 parents e32f088 + a972c04 commit 2c93e5e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Fixed

* UI: Handle null `run.jobVersion` in `DatasetInfo.tsx` to fix rendering issues.
* UI: better handling of null job latestRun for Jobs page [#2467](https://github.com/MarquezProject/marquez/pull/2467) [@perttus](https://github.com/perttus)

### Added

Expand Down
4 changes: 2 additions & 2 deletions web/src/routes/jobs/Jobs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ class Jobs extends React.Component<JobsProps> {
</TableCell>
<TableCell key={i18next.t('jobs_route.latest_run_col')} align='left'>
<MqStatus
color={runStateColor(job.latestRun.state)}
label={job.latestRun.state}
color={job.latestRun && runStateColor(job.latestRun.state || 'NEW')}
label={job.latestRun && job.latestRun.state ? job.latestRun.state : 'N/A'}
/>
</TableCell>
</TableRow>
Expand Down

0 comments on commit 2c93e5e

Please sign in to comment.