next-helios-fe 1.7.7 → 1.7.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-helios-fe",
3
- "version": "1.7.7",
3
+ "version": "1.7.8",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -443,7 +443,7 @@ export const Table: TableComponentProps = ({
443
443
  key={headerItem.key}
444
444
  className="px-4 py-1.5 bg-secondary-bg whitespace-nowrap"
445
445
  >
446
- {headerItem.render(item)}
446
+ {headerItem.render(item) || "-"}
447
447
  </td>
448
448
  );
449
449
  } else {
@@ -452,7 +452,7 @@ export const Table: TableComponentProps = ({
452
452
  key={headerItem.key}
453
453
  className="px-4 py-1.5 bg-secondary-bg whitespace-nowrap"
454
454
  >
455
- {item[headerItem.key as keyof typeof item]}
455
+ {item[headerItem.key as keyof typeof item] || "-"}
456
456
  </td>
457
457
  );
458
458
  }