<div class="row-4">
<button (click)="open(content)">Open modal</button>
<ng-template #content>
<p>HI</p>
</ng-template>
</div>
open(template: TemplateRef<any>) {
this.modalRef = this.modalService.show(template, { class: 'modal-sm' });
}
После 1 секунды отображения модального режима он перенаправляет меня на другой экран.