@3kles/kles-material-dynamicforms 14.0.10 → 14.0.11

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.
@@ -1016,7 +1016,6 @@ let KlesFormSelectComponent = class KlesFormSelectComponent extends KlesFieldAbs
1016
1016
  ngOnInit() {
1017
1017
  super.ngOnInit();
1018
1018
  if (this.field.lazy) {
1019
- this.isLoading = true;
1020
1019
  if (this.field.value) {
1021
1020
  this.options$ = new BehaviorSubject(Array.isArray(this.field.value) ? this.field.value : [this.field.value]);
1022
1021
  }
@@ -2243,7 +2242,6 @@ class KlesFormSelectSearchComponent extends KlesFieldAbstract {
2243
2242
  ngOnInit() {
2244
2243
  super.ngOnInit();
2245
2244
  if (this.field.lazy) {
2246
- this.isLoading = true;
2247
2245
  if (this.field.value) {
2248
2246
  this.options$ = new BehaviorSubject(Array.isArray(this.field.value) ? this.field.value : [this.field.value]);
2249
2247
  }