diff options
| author | joonhoekim <26rote@gmail.com> | 2025-09-26 18:54:10 +0900 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-09-26 18:54:10 +0900 |
| commit | d62368d2b68d73da895977e60a18f9b1286b0545 (patch) | |
| tree | 8a4dad5d9fc41201b56c6f22fc6b1173eaf7f60c | |
| parent | 19d87786fb83447561e2420cc46f133ae1d56821 (diff) | |
(김준회) AVL Detail 무한스크롤 비활성화
| -rw-r--r-- | lib/avl/table/avl-detail-table.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/avl/table/avl-detail-table.tsx b/lib/avl/table/avl-detail-table.tsx index 22c503ff..ca3ba7e7 100644 --- a/lib/avl/table/avl-detail-table.tsx +++ b/lib/avl/table/avl-detail-table.tsx @@ -75,6 +75,8 @@ export function AvlDetailTable({ }, getRowId: (row) => String(row.id), meta: tableMeta, + // 정적 데이터이므로 무한 스크롤 설정하지 않음 (클라이언트 측 소팅 활성화) + infiniteScrollConfig: undefined, }) return ( |
