From 3a75549ffec658609651c5f8bdd8e242a6304be6 Mon Sep 17 00:00:00 2001 From: kjs Date: Mon, 3 Nov 2025 12:22:13 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=B2=B4=ED=81=AC=EB=B0=95=EC=8A=A4=20?= =?UTF-8?q?=EC=BB=AC=EB=9F=BC=EC=9D=84=2048px=20=EA=B3=A0=EC=A0=95=20?= =?UTF-8?q?=EB=84=88=EB=B9=84=EB=A1=9C=20=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - InteractiveDataTable의 체크박스 컬럼/셀을 48px 고정 - width, minWidth, maxWidth 모두 48px로 설정 - 플로우 위젯처럼 작고 깔끔한 체크박스 컬럼 - 리사이즈 대상에서 제외 --- frontend/components/screen/InteractiveDataTable.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/frontend/components/screen/InteractiveDataTable.tsx b/frontend/components/screen/InteractiveDataTable.tsx index 5d31da83..a588b354 100644 --- a/frontend/components/screen/InteractiveDataTable.tsx +++ b/frontend/components/screen/InteractiveDataTable.tsx @@ -1957,7 +1957,10 @@ export const InteractiveDataTable: React.FC = ({ {/* 체크박스 컬럼 (삭제 기능이 활성화된 경우) */} {component.enableDelete && ( - + 0} onCheckedChange={handleSelectAll} @@ -2054,7 +2057,10 @@ export const InteractiveDataTable: React.FC = ({ {/* 체크박스 셀 (삭제 기능이 활성화된 경우) */} {component.enableDelete && ( - + handleRowSelect(rowIndex, checked as boolean)}