From 947e76fe556f3af29ce7efef576cfef9e0b006dc Mon Sep 17 00:00:00 2001 From: Francis Cao Date: Tue, 21 Apr 2026 12:04:10 -0700 Subject: [PATCH] add board type to board tables --- src/app/(main)/boards/BoardsTable.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/(main)/boards/BoardsTable.tsx b/src/app/(main)/boards/BoardsTable.tsx index 104a58fc8..b21cbee00 100644 --- a/src/app/(main)/boards/BoardsTable.tsx +++ b/src/app/(main)/boards/BoardsTable.tsx @@ -18,6 +18,9 @@ export function BoardsTable(props: DataTableProps) { }} + + {({ type }: any) => type ? type.charAt(0).toUpperCase() + type.slice(1) : ''} + {(row: any) => }