From 1f66ec0741cd75d7e11e95d9e1d032e31b450dc7 Mon Sep 17 00:00:00 2001 From: Joe Smallwood Date: Fri, 3 Nov 2023 15:16:36 +0200 Subject: [PATCH] Hide unknown status from the actions table --- components/dashboard/cells/StatusCell.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/dashboard/cells/StatusCell.tsx b/components/dashboard/cells/StatusCell.tsx index 8b4ccbb1..f2d40fba 100644 --- a/components/dashboard/cells/StatusCell.tsx +++ b/components/dashboard/cells/StatusCell.tsx @@ -18,6 +18,10 @@ const StatusDisplay = styled.div` const StatusCell = ({ action, plan }: Props) => { const { t } = useTranslation(); + if (action.statusSummary.identifier === 'UNDEFINED') { + return null; + } + return (