diff options
| author | joonhoekim <26rote@gmail.com> | 2025-08-14 13:15:21 +0000 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-08-14 13:15:21 +0000 |
| commit | 49d236df3bd2bd976ebc424644f34f5affa1074f (patch) | |
| tree | 7b0f60c399e724847894061fae74876aa1bf5c7e /components/data-table/data-table.tsx | |
| parent | 969c25b56f6d29d7ffa4bc2ce04c5fb4e5846b34 (diff) | |
(김준회) 결재 테스트 모듈 수정, 환경병수 eVCP 운영 대응, SGIPS JWT TOKEN 수정, SHI-API 기반 유저 관리 추가, 유저목록 테이블 변경
Diffstat (limited to 'components/data-table/data-table.tsx')
| -rw-r--r-- | components/data-table/data-table.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/data-table/data-table.tsx b/components/data-table/data-table.tsx index b898c2ea..07e4dcd2 100644 --- a/components/data-table/data-table.tsx +++ b/components/data-table/data-table.tsx @@ -90,7 +90,7 @@ export function DataTable<TData>({ key={header.id} colSpan={header.colSpan} data-column-id={header.column.id} - className={compactStyles.header} + className={cn(compactStyles.header, "whitespace-normal break-words")} style={{ ...getCommonPinningStylesWithBorder({ column: header.column, @@ -161,7 +161,7 @@ export function DataTable<TData>({ </button> )} - <span className="font-semibold"> + <span className="font-semibold whitespace-normal break-words"> {columnLabel}: {row.getValue(groupingColumnId)} </span> <span className="ml-2 text-xs text-muted-foreground"> @@ -188,7 +188,7 @@ export function DataTable<TData>({ <TableCell key={cell.id} data-column-id={cell.column.id} - className={compactStyles.cell} + className={cn(compactStyles.cell, "whitespace-normal break-words")} style={{ ...getCommonPinningStylesWithBorder({ column: cell.column }), width: cell.column.getSize(), |
