ng2-bootstrap-modal
ng2-bootstrap-modal copied to clipboard
Don't show dialog
Hi, There are no errors but the dialog is not seen, what can be the problem? My code is:
let disposable = this.dialogService.addDialog(ConfirmComponent, {
title: 'Confirm title',
message: 'Confirm message'
})
.subscribe((isConfirmed) => {
//We get dialog result
if (isConfirmed) {
alert('yes');
}
else {
alert('no');
}
});
What version of bootstrap do you use? Support of bootstrap 4 added in version 1.0.0
Hi bikalay, i use bootstrap 4
@bikalay @camunoz147 I got the same isssue.. Did u get any sollution for this