aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
authorShpuld Shpludson <shp@cock.li>2019-02-06 04:21:06 +0000
committerShpuld Shpludson <shp@cock.li>2019-02-06 04:21:06 +0000
commit68e53602299823067f696c8f0bdcfcd3fc4339d7 (patch)
tree1332c8e3d755e93a75502c1fcb6d9735c8478605 /src/App.vue
parent3d337a239e9fc5f1ca84131fc1bed68b1db53178 (diff)
parente3da156162ce04d987935eeb4649f0aa51590cf2 (diff)
Merge branch 'fix/add-option-to-hide-features-panel' into 'develop'
Add option to hide features panel See merge request pleroma/pleroma-fe!529
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..082c6cb6 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>