I'm currently working on an angular2 project, and we are utilizing the package "bootstrap": "~3.3.7".
We have encountered an issue while attempting to open the modal. Upon inspecting the HTML, we found the following code:
<ngb-modal-backdrop class="modal-backdrop fade show"></ngb-modal-backdrop>
<ngb-modal-window role="dialog" style="display: block;" tabindex="-1" ng-reflect-class-name="modal fade show" class="modal fade show">
It appears that in the class property, both the backdrop and window have a class of 'show'. However, when manually changing this to 'in' using the developer's console, the modals do appear on the screen.
We are simply calling the modal like this:
this.modalDialog = this.modalService.open(SiteSettingsEditDialog);
Any insights on what might be causing this issue?