diff --git a/frontend/lib/registry/components/table-list/TableListComponent.tsx b/frontend/lib/registry/components/table-list/TableListComponent.tsx index 8b94ef15..dd450621 100644 --- a/frontend/lib/registry/components/table-list/TableListComponent.tsx +++ b/frontend/lib/registry/components/table-list/TableListComponent.tsx @@ -442,7 +442,7 @@ export const TableListComponent: React.FC = ({ try { const categoryColumns = Object.entries(columnMeta) - .filter(([_, meta]) => meta.inputType === "category") + .filter(([_, meta]) => meta.inputType === "category" || meta.webType === "category") .map(([columnName, _]) => columnName); if (categoryColumns.length === 0) {