Skip to content

Commit

Permalink
Hide unknown status from the actions table
Browse files Browse the repository at this point in the history
  • Loading branch information
woodwoerk committed Nov 3, 2023
1 parent 338646c commit 1f66ec0
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 1f66ec0

Please sign in to comment.