From 4bac8ab190787d09371691f541627a3eb5866fa6 Mon Sep 17 00:00:00 2001 From: joonhoekim <26rote@gmail.com> Date: Fri, 10 Oct 2025 15:41:18 +0900 Subject: (김준회) fix: nested column 에만 table-fixed 속성 적용하도록 조건부 처리 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/data-table/expandable-data-table.tsx | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) (limited to 'components/data-table/expandable-data-table.tsx') diff --git a/components/data-table/expandable-data-table.tsx b/components/data-table/expandable-data-table.tsx index d36f0251..165ebd34 100644 --- a/components/data-table/expandable-data-table.tsx +++ b/components/data-table/expandable-data-table.tsx @@ -59,6 +59,13 @@ export function ExpandableDataTable({ useAutoSizeColumns(table, autoSizeColumns) + // nested header 감지: columns 속성을 가진 헤더가 있는지 확인 + const hasNestedHeader = React.useMemo(() => { + return table.getHeaderGroups().some(headerGroup => + headerGroup.headers.some(header => 'columns' in header.column.columnDef) + ) + }, [table]) + const containerRef = React.useRef(null) const scrollRef = React.useRef(null) const [expandedHeights, setExpandedHeights] = React.useState>(new Map()) @@ -499,13 +506,12 @@ export function ExpandableDataTable({ style={{ maxHeight: maxHeight || '34rem' }} onScroll={handleScroll} > - +
thead]:sticky [&>thead]:top-0 [&>thead]:z-10", + !hasNestedHeader && "table-fixed" // nested header가 없으면 table-fixed 적용 + )}> + {/* nested header가 있으면 table-fixed 제거, 없으면 적용 */} {table.getHeaderGroups().map((headerGroup) => ( -- cgit v1.2.3