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
Looks like the reducer registration is not implemented correctly as it throws an error.
As far as I can see, this isn't functional error but we should fix that at some point.
Possible fix is to override the reducer instead of registering it.
Replace
Injector.reducer.register('versionedAdmin', combineReducers({ historyViewer: historyViewerReducer, }), { force: true });
With
Injector.transform( 'versioned-history-viewer-override', (updater) => { updater.reducer('historyViewer', historyViewerReducer); } );
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Looks like the reducer registration is not implemented correctly as it throws an error.
As far as I can see, this isn't functional error but we should fix that at some point.
Possible fix is to override the reducer instead of registering it.
Replace
With
The text was updated successfully, but these errors were encountered: