@evenicanpm/portal-table-ui 2.3.1 → 2.3.2

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": "@evenicanpm/portal-table-ui",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "",
@@ -47,5 +47,5 @@
47
47
  "date-fns": "^4.1.0",
48
48
  "zod": "^4.4.3"
49
49
  },
50
- "gitHead": "7a5a6a8c3c3dd9efe96fbbb884b21e7681d32550"
50
+ "gitHead": "213ad422feec74815e682bd9950ef94893e5ecda"
51
51
  }
@@ -250,7 +250,7 @@ export default function DocumentTable({
250
250
  false; */
251
251
  // we want the column to appear by default, actions will render separately
252
252
  // when ready which is currently the desired behaviour per item 7435
253
- const hasActions = config?.Actions.length > 0;
253
+ const hasActions = (config?.Actions?.length ?? 0) > 0;
254
254
  const hasBulkActions = resolvedBulkActions.length > 0;
255
255
 
256
256
  // --- Render --- //