@porscheinformatik/clr-addons 15.6.4 → 15.6.6

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.
@@ -5735,6 +5735,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImpor
5735
5735
  ClarityIcons.addIcons(trashIcon);
5736
5736
  class ClrEnumFilterComponent {
5737
5737
  set value(values) {
5738
+ if (values === null) {
5739
+ values = [];
5740
+ }
5738
5741
  if (this.possibleValues?.length) {
5739
5742
  this.filteredValues = this.possibleValues.filter(possibleValue => values?.includes(possibleValue.value));
5740
5743
  this.clrFilterValuesChange.emit(this.getDisplayValues(this.filteredValues));