next-helios-fe 1.9.11 → 1.9.12
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 +6 -2
package/package.json
CHANGED
@@ -788,11 +788,15 @@ export const Table: TableComponentProps = ({
|
|
788
788
|
className="min-w-32 max-w-60 bg-secondary-bg px-4 py-1.5"
|
789
789
|
>
|
790
790
|
<Tooltip
|
791
|
-
content={
|
791
|
+
content={
|
792
|
+
item[headerItem.key as keyof typeof item]?.toString() ||
|
793
|
+
"-"
|
794
|
+
}
|
792
795
|
options={{ position: "top" }}
|
793
796
|
>
|
794
797
|
<div className="truncate whitespace-nowrap">
|
795
|
-
{item[headerItem.key as keyof typeof item] ||
|
798
|
+
{item[headerItem.key as keyof typeof item]?.toString() ||
|
799
|
+
"-"}
|
796
800
|
</div>
|
797
801
|
</Tooltip>
|
798
802
|
</td>
|