cobbler / cobbler-web

Our new seperate Angular based web interface for Cobbler
https://cobbler.github.io/cobbler-web/
MIT License
13 stars 9 forks source link

Fix: Item Detail Views not showing #350

Closed SchoolGuy closed 3 weeks ago

SchoolGuy commented 3 weeks ago

This is due to the fact that we only have a RouterOutlet in our main AppView. Children of a router always use their parent to render, as the parent doesn't have a RouterOutlet it cannot render the child and the parent stays visible. This is additionally confusing because the routing is succeeding.

Credit to https://stackoverflow.com/a/54381891