ods-component-lib 1.18.90 → 1.18.91

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.
@@ -34044,7 +34044,11 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
34044
34044
  var handleContentReady = function handleContentReady(e) {
34045
34045
  var dataGridInstance = e.component;
34046
34046
  var filteredDataCount = dataGridInstance.totalCount();
34047
- if (filterApplied.current && filteredDataCount > 0) setFilteredRowCount(filteredDataCount);
34047
+ if (filterApplied.current && filteredDataCount > 0) {
34048
+ setFilteredRowCount(filteredDataCount);
34049
+ } else {
34050
+ setFilteredRowCount(0);
34051
+ }
34048
34052
  if (!contentReady) setContentReady(true);
34049
34053
  };
34050
34054
  var onFilterValueChange = function onFilterValueChange(e) {