@leanix/components 0.2.172 → 0.2.176

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.
@@ -6271,7 +6271,9 @@
6271
6271
  ModalComponent.prototype.ngAfterViewInit = function () {
6272
6272
  var _this = this;
6273
6273
  if (this.open) {
6274
- setTimeout(function () { return _this.openModal(); });
6274
+ i6.timer()
6275
+ .pipe(operators.takeUntil(this.destroyed$))
6276
+ .subscribe(function () { return _this.openModal(); });
6275
6277
  }
6276
6278
  };
6277
6279
  ModalComponent.prototype.openModal = function () {