How to open ng-bootstrap modal popup on pageload in angular 7?

Viewed 3362

I am unable to display the ng-bootstrap modal popup on page load in angular 7.

i have tried the below code to open it.

openVerticallyCentered(content) {

this.modalService.open(content, { centered: true });.
this.modalService.open(content, { beforeDismiss: false });

}
1 Answers
Related