Skip to content

Commit

Permalink
fix(eventbus): workaround for ngxs router plugin issue
Browse files Browse the repository at this point in the history
  • Loading branch information
xmlking committed Nov 18, 2018
1 parent 9fb3ab0 commit 78a41a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/core/src/lib/state/eventbus.ts
Expand Up @@ -71,7 +71,7 @@ export class EventBus {
}),
)
.subscribe((event: NavigationEnd) => {
const data = this.store.selectSnapshot<RouterStateData>(RouterState.state);
const data = this.store.selectSnapshot<any>(RouterState.state);
this.pageTitle.setTitle(data.breadcrumbs);
this.analytics.setPage(data.url);
});
Expand Down

0 comments on commit 78a41a2

Please sign in to comment.