@hexure/ui 1.8.16 → 1.8.17

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/cjs/index.js CHANGED
@@ -2398,7 +2398,7 @@ const BulkActionBar = (_a) => {
2398
2398
  selectedCount,
2399
2399
  " Selected"),
2400
2400
  onClear ? React.createElement(Clear, { onClick: onClear }, "Clear") : null),
2401
- React.createElement(Actions$1, null, actions.map(action => (React.createElement(Button, Object.assign({}, action, { small: true })))))),
2401
+ React.createElement(Actions$1, null, actions.map((action, i) => (React.createElement(Button, Object.assign({}, action, { key: i, small: true })))))),
2402
2402
  errorMsg ? (React.createElement(Error$1, null,
2403
2403
  React.createElement(Icon, { color: Colors.RED.Hex, path: js.mdiInformationOutline, size: '20px' }),
2404
2404
  React.createElement(ErrorMsg, null, errorMsg))) : null));