From 4cd08c3900d52b89dc430aa0890cb8974ee54e1b Mon Sep 17 00:00:00 2001 From: kjs Date: Thu, 6 Nov 2025 12:27:22 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20webType=EB=8F=84=20=EC=B2=B4=ED=81=AC?= =?UTF-8?q?=ED=95=98=EC=97=AC=20=EC=B9=B4=ED=85=8C=EA=B3=A0=EB=A6=AC=20?= =?UTF-8?q?=EC=BB=AC=EB=9F=BC=20=EA=B0=90=EC=A7=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - inputType과 webType 모두 'category'인 경우 처리 - columnMeta에 inputType이 없어도 webType으로 감지 가능 - material 컬럼 등 webType만 있는 경우도 정상 동작 --- .../lib/registry/components/table-list/TableListComponent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {