ng2-bootstrap-modal icon indicating copy to clipboard operation
ng2-bootstrap-modal copied to clipboard

Don't show dialog

Open carmu opened this issue 8 years ago • 3 comments

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');
    }
  });

carmu avatar Mar 01 '17 20:03 carmu

What version of bootstrap do you use? Support of bootstrap 4 added in version 1.0.0

bikalay avatar Mar 05 '17 21:03 bikalay

Hi bikalay, i use bootstrap 4

carmu avatar Mar 17 '17 02:03 carmu

@bikalay @camunoz147 I got the same isssue.. Did u get any sollution for this

nishant-rapidops avatar Sep 13 '17 07:09 nishant-rapidops