@ardium-ui/ui 5.0.0-alpha.42 → 5.0.0-alpha.43

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.
@@ -2891,7 +2891,7 @@ class ItemStorage {
2891
2891
  }
2892
2892
  handleWriteValue(ngModel) {
2893
2893
  //defer writing the value if no options are yet loaded
2894
- if (!this._wasValueWriteDeferred && this._items().length === 0) {
2894
+ if ((!this._wasValueWriteDeferred || this._ardParentComp.isLoading()) && this._items().length === 0) {
2895
2895
  this._valueToWriteAfterItemsLoad = ngModel;
2896
2896
  this._wasValueWriteDeferred = true;
2897
2897
  return;