diff options
| author | hakabahitoyo <hakabahitoyo@example.com> | 2018-09-03 16:02:06 +0900 |
|---|---|---|
| committer | hakabahitoyo <hakabahitoyo@example.com> | 2018-09-03 16:02:06 +0900 |
| commit | fa477dd41f78e17bb844342aa770ac8854fe3310 (patch) | |
| tree | 682ce170a8fa7789dee75d0cdd6a995dc359887e | |
| parent | 38b683b30cd8ffd2fc4ab444f1a4690dc1ed3808 (diff) | |
show features panel only if not login
| -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 bfe1f760..059460f9 100644 --- a/src/App.vue +++ b/src/App.vue @@ -28,7 +28,7 @@ <user-panel></user-panel> <nav-panel></nav-panel> <instance-specific-panel v-if="showInstanceSpecificPanel"></instance-specific-panel> - <features-panel></features-panel> + <features-panel v-if="!currentUser"></features-panel> <who-to-follow-panel v-if="currentUser && suggestionsEnabled"></who-to-follow-panel> <notifications v-if="currentUser"></notifications> </div> |
