summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/src/reducers/ui.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/debugger/src/reducers/ui.js')
-rw-r--r--devtools/client/debugger/src/reducers/ui.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/devtools/client/debugger/src/reducers/ui.js b/devtools/client/debugger/src/reducers/ui.js
index 7f37d2f54f..3544b3aa5c 100644
--- a/devtools/client/debugger/src/reducers/ui.js
+++ b/devtools/client/debugger/src/reducers/ui.js
@@ -63,6 +63,7 @@ export const initialUIState = () => ({
},
projectSearchQuery: "",
hideIgnoredSources: prefs.hideIgnoredSources,
+ sourceMapsEnabled: prefs.clientSourceMapsEnabled,
sourceMapIgnoreListEnabled: prefs.sourceMapIgnoreListEnabled,
});
@@ -93,7 +94,7 @@ function update(state = initialUIState(), action) {
case "TOGGLE_SOURCE_MAPS_ENABLED": {
prefs.clientSourceMapsEnabled = action.value;
- return { ...state };
+ return { ...state, sourceMapsEnabled: action.value };
}
case "SET_ORIENTATION": {