@open-rlb/ng-bootstrap 3.3.1 → 3.3.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.
@@ -9937,10 +9937,12 @@ class SelectComponent extends AbstractComponent {
9937
9937
  return;
9938
9938
  vcr.clear();
9939
9939
  options.forEach(opt => {
9940
- vcr.createEmbeddedView(opt.template());
9940
+ const view = vcr.createEmbeddedView(opt.template());
9941
+ view.detectChanges();
9941
9942
  });
9942
9943
  untracked(() => {
9943
9944
  this.onWrite(this.value());
9945
+ this.cdr.markForCheck();
9944
9946
  });
9945
9947
  });
9946
9948
  }