From a90c6c1db43067531b017df2c0cb8c48fffea56d Mon Sep 17 00:00:00 2001 From: bennykok Date: Mon, 29 Jan 2024 21:39:36 +0800 Subject: [PATCH] chore: machine list machine type badge --- web/src/components/MachineList.tsx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/web/src/components/MachineList.tsx b/web/src/components/MachineList.tsx index 5b5d5cb..a4a01a8 100644 --- a/web/src/components/MachineList.tsx +++ b/web/src/components/MachineList.tsx @@ -149,9 +149,16 @@ export const columns: ColumnDef[] = [ header: () =>
Type
, cell: ({ row }) => { return ( -
+ {row.original.type} -
+ ); }, },