From 1df08801a207eb1e32550233746530ae93200256 Mon Sep 17 00:00:00 2001 From: henrygd Date: Mon, 20 Oct 2025 14:33:49 -0400 Subject: [PATCH] fix unfound filter values hiding containers chart (#1301) --- .../src/components/containers-table/containers-table.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/internal/site/src/components/containers-table/containers-table.tsx b/internal/site/src/components/containers-table/containers-table.tsx index c14b5f2f..6d4bced9 100644 --- a/internal/site/src/components/containers-table/containers-table.tsx +++ b/internal/site/src/components/containers-table/containers-table.tsx @@ -135,8 +135,6 @@ export default function ContainersTable({ systemId }: { systemId?: string }) { const rows = table.getRowModel().rows const visibleColumns = table.getVisibleLeafColumns() - if (!rows.length) return null - return ( @@ -196,7 +194,7 @@ const AllContainersTable = memo( ref={scrollRef} > {/* add header height to table size */} -
+
@@ -423,6 +421,7 @@ const ContainerTableRow = memo( {row.getVisibleCells().map((cell) => (