@acorex/platform 20.6.0-next.1 → 20.6.0-next.2

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.
@@ -4780,7 +4780,9 @@ class AXPSelectBoxWidgetEditComponent extends AXPDataListWidgetComponent {
4780
4780
  if (this.filter()) {
4781
4781
  const cleanedFilters = AXPCleanNestedFilters([this.filter()]);
4782
4782
  if (cleanedFilters.length > 0) {
4783
- this.dataSource()?.filter(this.filterOperatorMiddleware.transformFilter(cleanedFilters[0]));
4783
+ untracked(() => {
4784
+ this.dataSource()?.filter(this.filterOperatorMiddleware.transformFilter(cleanedFilters[0]));
4785
+ });
4784
4786
  }
4785
4787
  }
4786
4788
  }, ...(ngDevMode ? [{ debugName: "#effect" }] : []));