aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/UIStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/UIStore.js')
-rw-r--r--src/stores/UIStore.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/stores/UIStore.js b/src/stores/UIStore.js
index 9680c5bcc..2c785111f 100644
--- a/src/stores/UIStore.js
+++ b/src/stores/UIStore.js
@@ -46,6 +46,7 @@ export default class UIStore extends Store {
46 // Actions 46 // Actions
47 @action _openSettings({ path = '/settings' }) { 47 @action _openSettings({ path = '/settings' }) {
48 const settingsPath = path !== '/settings' ? `/settings/${path}` : path; 48 const settingsPath = path !== '/settings' ? `/settings/${path}` : path;
49 console.log(settingsPath);
49 this.stores.router.push(settingsPath); 50 this.stores.router.push(settingsPath);
50 } 51 }
51 52