Skip to content

Commit

Permalink
Merge pull request #209 from kausaltech/fix/hide-unknown-status
Browse files Browse the repository at this point in the history
Hide unknown status from the actions table
  • Loading branch information
woodwoerk authored Nov 6, 2023
2 parents 338646c + 1f66ec0 commit 83c8397
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions components/dashboard/cells/StatusCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ const StatusDisplay = styled.div`
const StatusCell = ({ action, plan }: Props) => {
const { t } = useTranslation();

if (action.statusSummary.identifier === 'UNDEFINED') {
return null;
}

return (
<StatusDisplay>
<StatusBadge
Expand Down

0 comments on commit 83c8397

Please sign in to comment.