🐞 Bug report
Description
maybe it was planned.
but when I change the router state I expect to have a new currentState from getCurrent() Observable:
this.scully.getCurrent().subscribe(current => ...);
temporary workaround:
this.router.events.pipe(
filter(event => event instanceof NavigationEnd),
switchMap(_ => this.getCurrent()))
.subscribe(article => this.article = article);
🐞 Bug report
Description
maybe it was planned.
but when I change the router state I expect to have a new currentState from
getCurrent()Observable:temporary workaround: