From 0a3eb898aea22102ade4123c72247b58a7e97ebf Mon Sep 17 00:00:00 2001 From: henrygd Date: Thu, 13 Nov 2025 16:41:15 -0500 Subject: [PATCH] truncate device name in smart table (#1416) --- internal/site/src/components/routes/system/smart-table.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/internal/site/src/components/routes/system/smart-table.tsx b/internal/site/src/components/routes/system/smart-table.tsx index f36fc609..a4c3792c 100644 --- a/internal/site/src/components/routes/system/smart-table.tsx +++ b/internal/site/src/components/routes/system/smart-table.tsx @@ -118,7 +118,9 @@ export const columns: ColumnDef[] = [ sortingFn: (a, b) => a.original.device.localeCompare(b.original.device), header: ({ column }) => , cell: ({ row }) => ( -
{row.getValue("device")}
+
+ {row.getValue("device")} +
), }, {