We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've migrated my project to use ngrx v4, Chrome/Firefox Redux Devtools extension was fine until I added router state and reducer to the app as instructed by https://github.com/ngrx/platform/blob/master/MIGRATION.md#ngrxrouter-store
I used the example-app and was able to reproduce the problem
export const reducers: ActionReducerMap<State> = { layout: fromLayout.reducer, router: routerReducer }; // console.log all actions export function logger(reducer: ActionReducer<State>): ActionReducer<any, any> { return function(state: State, action: any): State { console.log('state', state); console.log('action', action); return reducer(state, action); }; } ... ... ... export const getShowSidenav = createSelector( getLayoutState, fromLayout.getShowSidenav );
The text was updated successfully, but these errors were encountered:
Duplicate of #97
Sorry, something went wrong.
No branches or pull requests
I've migrated my project to use ngrx v4, Chrome/Firefox Redux Devtools extension was fine until I added router state and reducer to the app as instructed by https://github.com/ngrx/platform/blob/master/MIGRATION.md#ngrxrouter-store
I used the example-app and was able to reproduce the problem
The text was updated successfully, but these errors were encountered: