ywana-core8 0.0.548 → 0.0.549

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.umd.js CHANGED
@@ -4806,7 +4806,7 @@
4806
4806
  options: options
4807
4807
  };
4808
4808
  }),
4809
- rows: groups[groupName].map(function (item) {
4809
+ rows: groups[groupName].map(function (item, index) {
4810
4810
  item.actions = actions ? actions.map(function (_action) {
4811
4811
  return _action.filter ? _action.filter(item) ? /*#__PURE__*/React__default["default"].createElement(Icon, {
4812
4812
  icon: _action.icon,
@@ -4829,7 +4829,7 @@
4829
4829
  size: "small",
4830
4830
  clickable: true,
4831
4831
  action: function action() {
4832
- return remove(item.id);
4832
+ return remove(index);
4833
4833
  }
4834
4834
  }));
4835
4835
  return item;