diff --git a/internal/site/src/components/systems-table/systems-table-columns.tsx b/internal/site/src/components/systems-table/systems-table-columns.tsx index 49e0000b..355ed53a 100644 --- a/internal/site/src/components/systems-table/systems-table-columns.tsx +++ b/internal/site/src/components/systems-table/systems-table-columns.tsx @@ -196,7 +196,13 @@ export function SystemsTableColumns(viewMode: "table" | "grid"): ColumnDef info.g || undefined, id: "gpu", name: () => "GPU", - cell: TableCellWithMeter, + cell: (info) => { + const val = info.getValue() as number | undefined + if (val === undefined) { + return null + } + return TableCellWithMeter(info) + }, Icon: GpuIcon, header: sortableHeader, },