From 489927bdc93d58ee3966609a60a25a38816aad6a Mon Sep 17 00:00:00 2001
From: taehoon <th.dev91@gmail.com>
Date: Sun, 5 May 2019 23:00:45 -0400
Subject: [PATCH] toggle showing new status form instead of toggle mouting

---
 src/App.vue | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/src/App.vue b/src/App.vue
index cb7e8d785..21abd694e 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -18,17 +18,19 @@
         </div>
       </div>
     </nav>
-    <div v-if="" class="container" id="content">
-      <div class="sidebar-flexer mobile-hidden" v-if="!isMobileLayout">
+    <div class="container" id="content">
+      <div class="sidebar-flexer mobile-hidden">
         <div class="sidebar-bounds">
           <div class="sidebar-scroller">
             <div class="sidebar">
               <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>
-              <who-to-follow-panel v-if="currentUser && suggestionsEnabled"></who-to-follow-panel>
-              <notifications v-if="currentUser"></notifications>
+              <div v-if="!isMobileLayout">
+                <nav-panel></nav-panel>
+                <instance-specific-panel v-if="showInstanceSpecificPanel"></instance-specific-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>
             </div>
           </div>
         </div>
-- 
GitLab