next-helios-fe 1.8.29 → 1.8.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/components/table/index.tsx +2 -1
package/package.json
CHANGED
@@ -456,7 +456,8 @@ export const Table: TableComponentProps = ({
|
|
456
456
|
return (
|
457
457
|
<td
|
458
458
|
key={headerItem.key}
|
459
|
-
className="px-4 py-1.5 bg-secondary-bg whitespace-nowrap"
|
459
|
+
className="max-w-60 px-4 py-1.5 bg-secondary-bg truncate whitespace-nowrap"
|
460
|
+
title={item[headerItem.key as keyof typeof item] || "-"}
|
460
461
|
>
|
461
462
|
{item[headerItem.key as keyof typeof item] || "-"}
|
462
463
|
</td>
|