aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/reducers/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/reducers/app.js')
-rw-r--r--ui/app/reducers/app.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/ui/app/reducers/app.js b/ui/app/reducers/app.js
index 6d805521b..4f10d9857 100644
--- a/ui/app/reducers/app.js
+++ b/ui/app/reducers/app.js
@@ -42,6 +42,9 @@ function reduceApp (state, action) {
modalState: {
name: null,
},
+ previousModalState: {
+ name: null,
+ }
},
sidebarOpen: false,
networkDropdownOpen: false,
@@ -87,6 +90,7 @@ function reduceApp (state, action) {
state.appState.modal,
{ open: true },
{ modalState: action.payload },
+ { previousModalState: appState.modal.modalState},
),
})
@@ -95,7 +99,8 @@ function reduceApp (state, action) {
modal: Object.assign(
state.appState.modal,
{ open: false },
- { modalState: action.payload || state.appState.modal.modalState },
+ { modalState: { name: null } },
+ { previousModalState: appState.modal.modalState},
),
})