ods-component-lib 1.17.82 → 1.17.83
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 +1 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +1 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -1193,7 +1193,6 @@ var renderMenuItem = function renderMenuItem() {
|
|
|
1193
1193
|
formats: exportFormats
|
|
1194
1194
|
});
|
|
1195
1195
|
};
|
|
1196
|
-
var filterValue = [];
|
|
1197
1196
|
function OdsDataGrid(props) {
|
|
1198
1197
|
var dataGridRef = useRef(null);
|
|
1199
1198
|
return grid(props, dataGridRef);
|
|
@@ -1286,7 +1285,7 @@ function grid(props, dataGridRef) {
|
|
|
1286
1285
|
onEditCanceling: props.onEditCanceling,
|
|
1287
1286
|
onExporting: onExporting,
|
|
1288
1287
|
filterSyncEnabled: false,
|
|
1289
|
-
filterValue:
|
|
1288
|
+
filterValue: "",
|
|
1290
1289
|
height: window.innerHeight - 164,
|
|
1291
1290
|
repaintChangesOnly: true,
|
|
1292
1291
|
remoteOperations: props.remoteOperations !== undefined ? props.remoteOperations : false,
|