From 3d120b350557da9eaada4e500be1661eb3ab40a5 Mon Sep 17 00:00:00 2001 From: Pablo Lara Date: Fri, 6 Sep 2024 16:42:12 +0200 Subject: [PATCH] chore: WIP --- components/providers/table/DataTableProvider.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/components/providers/table/DataTableProvider.tsx b/components/providers/table/DataTableProvider.tsx index 151a269f96..b89fa2a6c6 100644 --- a/components/providers/table/DataTableProvider.tsx +++ b/components/providers/table/DataTableProvider.tsx @@ -55,9 +55,13 @@ export function DataTableProvider({ }, }); + // This will be used to have "custom" filters in the table and will be + // passed to the FilterColumnTable component. This needs to be dynamic + // based on the columns that are available in the table. + const filters = [ { key: "provider", values: ["aws", "gcp", "azure"] }, - { key: "connected", values: ["true", "null"] }, + { key: "connected", values: ["false", "true"] }, // Add more filter categories as needed ];