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 ];