p-verifyDialog не фокусируется

Всякий раз, когда я нажимаю на кнопку, открывается диалоговое окно, но весь экран перестает работать, и я не могу нажать на диалоговое окно.

HTML-файл

<p-confirmDialog header="Confirmation" icon="pi pi-exclamation-triangle"> 

<button type="text" (click)="confirm()" pButton icon="pi pi-check" 
label="Confirm"></button>

файл.ts

constructor(private confirmationService: ConfirmationService) {}

confirm() {
this.confirmationService.confirm({
    message: 'Are you sure that you want to perform this action?',
    accept: () => {
        //Actual logic to perform a confirmation
    }
});
}

нажмите здесь, чтобы увидеть, как отображается диалоговое окно

0 ответов

Другие вопросы по тегам