@annalib/anna-core 22.1.12 → 22.1.13

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.
@@ -4355,7 +4355,7 @@ class AnnaGtHelperService {
4355
4355
  }
4356
4356
  isSortingAppliedToTable() {
4357
4357
  let isSortingApplied = false;
4358
- for (let val of this.annaSortService.columnSortState.values()) {
4358
+ for (let val of this.annaSortService.columnSortState?.values()) {
4359
4359
  if (val == "ASC" || val == "DESC") {
4360
4360
  isSortingApplied = true;
4361
4361
  }