We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bc5987 commit a0db7d5Copy full SHA for a0db7d5
lib/static/modules/middlewares/local-storage.js
@@ -22,5 +22,9 @@ export default store => next => action => {
22
23
function shouldUpdateLocalStorage(actionType) {
24
return /^VIEW_/.test(actionType)
25
- || [actionNames.INIT_GUI_REPORT, actionNames.INIT_STATIC_REPORT].includes(actionType);
+ || [
26
+ actionNames.INIT_GUI_REPORT,
27
+ actionNames.INIT_STATIC_REPORT,
28
+ actionNames.CHANGE_VIEW_MODE
29
+ ].includes(actionType);
30
}
0 commit comments