From 6bf37dcf5a771f4d1046485dc1a686eb035e52f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=AF=BC=ED=97=8C?= Date: Mon, 6 Jul 2026 17:29:18 +0900 Subject: [PATCH] =?UTF-8?q?fix(list):=20=ED=85=8C=EC=9D=B4=EB=B8=94=20?= =?UTF-8?q?=EA=B3=A0=EC=A0=95=20=EB=A0=88=EC=9D=B4=EC=95=84=EC=9B=83=C2=B7?= =?UTF-8?q?=EC=85=80=20=EB=A7=90=EC=A4=84=EC=9E=84=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - table-fixed 를 내용 기반 자동 레이아웃으로 전환, 셀의 overflow-hidden·text-ellipsis 제거 - 셀 내용이 잘리는 대신 컬럼 폭이 내용에 맞게 조정되도록 (whitespace-nowrap 은 유지) Co-Authored-By: Claude Fable 5 --- frontend/src/features/list/components/TableSection.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/features/list/components/TableSection.tsx b/frontend/src/features/list/components/TableSection.tsx index 76d276b..5676c0c 100644 --- a/frontend/src/features/list/components/TableSection.tsx +++ b/frontend/src/features/list/components/TableSection.tsx @@ -15,7 +15,7 @@ export function TableSection({ items, selectedId, isLoading, onItemClick }: Tabl return (
- +
{COLUMNS.map((col) => ( @@ -50,7 +50,7 @@ export function TableSection({ items, selectedId, isLoading, onItemClick }: Tabl key={col.key} className={cn( col.width, - 'px-4 border-b border-border overflow-hidden text-ellipsis whitespace-nowrap', + 'px-4 border-b border-border whitespace-nowrap', col.align, )} >