ods-component-lib 1.17.48 → 1.17.50

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.
@@ -1239,15 +1239,16 @@ function grid(props, dataGridRef) {
1239
1239
  }
1240
1240
  };
1241
1241
  var customLoad = function customLoad() {
1242
- debugger;
1243
1242
  var state = JSON.parse(localStorage.getItem(props.exportFileName + "Storage"));
1244
1243
  state.selectedRowKeys = [];
1244
+ state.filterValue = [];
1245
+ state.selectionFilter = [];
1245
1246
  return state;
1246
1247
  };
1247
1248
  var customSave = function customSave(state) {
1248
- debugger;
1249
1249
  state.selectedRowKeys = [];
1250
1250
  state.filterValue = [];
1251
+ state.selectionFilter = [];
1251
1252
  localStorage.setItem(props.exportFileName + "Storage", JSON.stringify(state));
1252
1253
  };
1253
1254
  return React.createElement(React.Fragment, null, React.createElement("div", {