ods-component-lib 1.17.87 → 1.17.89
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.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +6 -0
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -1243,11 +1243,17 @@ function grid(props, dataGridRef) {
|
|
|
1243
1243
|
var state = JSON.parse(localStorage.getItem(props.exportFileName + "Storage"));
|
|
1244
1244
|
if (localStorage.getItem(props.exportFileName + "Storage")) {
|
|
1245
1245
|
state.selectedRowKeys = [];
|
|
1246
|
+
state.filterPanel = {
|
|
1247
|
+
filterEnabled: false
|
|
1248
|
+
};
|
|
1246
1249
|
}
|
|
1247
1250
|
return state;
|
|
1248
1251
|
};
|
|
1249
1252
|
var customSave = function customSave(state) {
|
|
1250
1253
|
state.selectedRowKeys = [];
|
|
1254
|
+
state.filterPanel = {
|
|
1255
|
+
filterEnabled: false
|
|
1256
|
+
};
|
|
1251
1257
|
localStorage.setItem(props.exportFileName + "Storage", JSON.stringify(state));
|
|
1252
1258
|
};
|
|
1253
1259
|
useEffect(function () {
|