aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
authordev92341 <jasper92341@hotmail.com>2019-02-05 03:57:11 -0800
committerdev92341 <jasper92341@hotmail.com>2019-02-05 03:57:11 -0800
commitf2c6dd658130be3dbef260dfa03d6bb7c67b7236 (patch)
tree03b303912f1900892cdfb6f81d23c935c700e9ec /src/App.vue
parent448317338ea585502c0bca03151fc9f3e50aba2e (diff)
Add option to hide features panel
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue
index 833608ea..b999d889 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -29,7 +29,7 @@
<user-panel></user-panel>
<nav-panel></nav-panel>
<instance-specific-panel v-if="showInstanceSpecificPanel"></instance-specific-panel>
- <features-panel v-if="!currentUser"></features-panel>
+ <features-panel v-if="!currentUser &&showFeaturesPanel"></features-panel>
<who-to-follow-panel v-if="currentUser && suggestionsEnabled"></who-to-follow-panel>
<notifications v-if="currentUser"></notifications>
</div>