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.js
CHANGED
|
@@ -1247,11 +1247,17 @@ function grid(props, dataGridRef) {
|
|
|
1247
1247
|
var state = JSON.parse(localStorage.getItem(props.exportFileName + "Storage"));
|
|
1248
1248
|
if (localStorage.getItem(props.exportFileName + "Storage")) {
|
|
1249
1249
|
state.selectedRowKeys = [];
|
|
1250
|
+
state.filterPanel = {
|
|
1251
|
+
filterEnabled: false
|
|
1252
|
+
};
|
|
1250
1253
|
}
|
|
1251
1254
|
return state;
|
|
1252
1255
|
};
|
|
1253
1256
|
var customSave = function customSave(state) {
|
|
1254
1257
|
state.selectedRowKeys = [];
|
|
1258
|
+
state.filterPanel = {
|
|
1259
|
+
filterEnabled: false
|
|
1260
|
+
};
|
|
1255
1261
|
localStorage.setItem(props.exportFileName + "Storage", JSON.stringify(state));
|
|
1256
1262
|
};
|
|
1257
1263
|
React.useEffect(function () {
|