@annalib/anna-core 4.2.25 → 4.2.27

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.
@@ -2035,8 +2035,7 @@ class AnnaNonEditableGenericTableComponent {
2035
2035
  if (header.filter == "CHECKBOX" && (uniq(values).filter(n => n != null).length > 1 || activeAndLastlyAppliedHeader)) {
2036
2036
  enabledHeaders.push(item);
2037
2037
  }
2038
- else if (header.filter != "CHECKBOX" &&
2039
- (uniq(values).filter(n => n != null && n != "-").length > 1 || activeAndLastlyAppliedHeader)) {
2038
+ else if (header.filter != "CHECKBOX" && (uniq(values).filter(n => n != null && n != "-").length > 1 || activeAndLastlyAppliedHeader)) {
2040
2039
  enabledHeaders.push(item);
2041
2040
  }
2042
2041
  }