You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think this is a very important issue because a small issue is preventing ngx-bootstrap to work correctly with Angular Universal. After searching in this repo, I found that this same issue may be affecting the modal directive as you use the parentNode.removeChild directly through the DOM instead of using the Renderer2 method.
The text was updated successfully, but these errors were encountered:
There's a bug in the tabset component that's causing an error with angular universal.
The error I'm getting is:
I think the issue is caused because you are accessing the DOM directly in this line:
ngx-bootstrap/src/tabs/tabset.component.ts
Line 83 in b9ee706
Maybe there's an easy fix for this using the Renderer2 removeChild method instead of
parentNode.removeChild
I think this is a very important issue because a small issue is preventing ngx-bootstrap to work correctly with Angular Universal. After searching in this repo, I found that this same issue may be affecting the modal directive as you use the
parentNode.removeChild
directly through the DOM instead of using the Renderer2 method.The text was updated successfully, but these errors were encountered: