aboutsummaryrefslogtreecommitdiff
path: root/src/App.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.js')
-rw-r--r--src/App.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/App.js b/src/App.js
index 14a41af0..c326ddfc 100644
--- a/src/App.js
+++ b/src/App.js
@@ -16,7 +16,8 @@ export default {
}),
computed: {
currentUser () { return this.$store.state.users.currentUser },
- style () { return { 'background-image': `url(${this.currentUser.background_image})` } }
+ style () { return { 'background-image': `url(${this.currentUser.background_image})` } },
+ sitename () { return this.$store.state.config.name }
},
methods: {
activatePanel (panelName) {