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.js
CHANGED
|
@@ -1197,7 +1197,6 @@ var renderMenuItem = function renderMenuItem() {
|
|
|
1197
1197
|
formats: exportFormats
|
|
1198
1198
|
});
|
|
1199
1199
|
};
|
|
1200
|
-
var filterValue = [];
|
|
1201
1200
|
function OdsDataGrid(props) {
|
|
1202
1201
|
var dataGridRef = React.useRef(null);
|
|
1203
1202
|
return grid(props, dataGridRef);
|
|
@@ -1290,7 +1289,7 @@ function grid(props, dataGridRef) {
|
|
|
1290
1289
|
onEditCanceling: props.onEditCanceling,
|
|
1291
1290
|
onExporting: onExporting,
|
|
1292
1291
|
filterSyncEnabled: false,
|
|
1293
|
-
filterValue:
|
|
1292
|
+
filterValue: "",
|
|
1294
1293
|
height: window.innerHeight - 164,
|
|
1295
1294
|
repaintChangesOnly: true,
|
|
1296
1295
|
remoteOperations: props.remoteOperations !== undefined ? props.remoteOperations : false,
|