@acorex/platform 20.6.5 → 20.6.7

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.
@@ -5298,7 +5298,9 @@ class AXPSelectBoxWidgetEditComponent extends AXPDataListWidgetComponent {
5298
5298
  const cleanedFilters = AXPCleanNestedFilters([this.filter()]);
5299
5299
  if (cleanedFilters.length > 0) {
5300
5300
  untracked(() => {
5301
- this.dataSource()?.filter(this.filterOperatorMiddleware.transformFilter(cleanedFilters[0]));
5301
+ setTimeout(() => {
5302
+ this.dataSource()?.filter(this.filterOperatorMiddleware.transformFilter(cleanedFilters[0]));
5303
+ });
5302
5304
  });
5303
5305
  }
5304
5306
  }