diff options
| author | dev92341 <jasper92341@hotmail.com> | 2019-02-05 04:32:00 -0800 |
|---|---|---|
| committer | dev92341 <jasper92341@hotmail.com> | 2019-02-05 04:32:00 -0800 |
| commit | 1ee762cf6e09c12c21d5ba23295a128db493f6fc (patch) | |
| tree | 289509f9e81d112f965c769aec833169e43b276d | |
| parent | f2c6dd658130be3dbef260dfa03d6bb7c67b7236 (diff) | |
Add option to hide features panel
| -rw-r--r-- | src/App.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue index b999d889..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 &&showFeaturesPanel"></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> |
