aboutsummaryrefslogtreecommitdiff
path: root/src/App.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.js')
-rw-r--r--src/App.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/App.js b/src/App.js
index 040138c9..da66fe21 100644
--- a/src/App.js
+++ b/src/App.js
@@ -107,6 +107,9 @@ export default {
return {
'order': this.$store.state.instance.sidebarRight ? 99 : 0
}
+ },
+ showStorageError () {
+ return this.$store.state.interface.storageError === 'show'
}
},
methods: {
@@ -129,6 +132,9 @@ export default {
if (changed) {
this.$store.dispatch('setMobileLayout', mobileLayout)
}
+ },
+ hideStorageError () {
+ this.$store.dispatch('setStorageError', 'hide')
}
}
}