@acorex/components 20.7.33 → 20.7.35

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.
@@ -262,9 +262,9 @@ class AXSelectBoxComponent extends classes(MXDropdownBoxBaseComponent, MXSelecti
262
262
  }
263
263
  }
264
264
  resetSearchAfterSelection() {
265
- if (!this.searchBox && !this.searchBox.value)
265
+ if (!this.searchBox && !this.searchBox?.value)
266
266
  return;
267
- if (this.searchBox && this.searchBox.value)
267
+ if (this.searchBox && this.searchBox?.value)
268
268
  this.searchBox.commitValue('', false);
269
269
  }
270
270
  /** @ignore */