@servicemind.tis/tis-smart-table-viewer 2.3.16 → 2.3.17

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.
@@ -2537,7 +2537,7 @@ class TisSmartTableViewerComponent {
2537
2537
  this.allRowsSelectedChange.emit(this.isAllRowsSelected);
2538
2538
  return;
2539
2539
  }
2540
- this.isAllRowsSelected = this.selection.selected.length === this.dataSource.apiSubject.value.length;
2540
+ this.isAllRowsSelected = (this.selection.selected.length >= this.dataSource.apiSubject.value.length);
2541
2541
  this.allRowsSelectedChange.emit(this.isAllRowsSelected);
2542
2542
  }
2543
2543
  toggleAllRows() {