From b14c0c2255b2e584c02edfef7b6bc3403cc6a124 Mon Sep 17 00:00:00 2001 From: Collin Barrett <6483057+collinbarrett@users.noreply.github.com> Date: Mon, 23 Jun 2025 20:17:50 -0500 Subject: [PATCH] feat(web): add Description column --- web/src/components/filterlist-table/columns.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/web/src/components/filterlist-table/columns.tsx b/web/src/components/filterlist-table/columns.tsx index e0f955404..20ac660bf 100644 --- a/web/src/components/filterlist-table/columns.tsx +++ b/web/src/components/filterlist-table/columns.tsx @@ -4,12 +4,16 @@ import { ColumnDef } from "@tanstack/react-table"; export type FilterList = { name: string; + description: string; }; export const columns: ColumnDef[] = [ { accessorKey: "name", header: "Name", - cell: (info) => info.getValue(), + }, + { + accessorKey: "description", + header: "Description", }, ];