Sfoglia il codice sorgente

fix(topbar): default showBack to false for tab pages

xuyunhui 1 settimana fa
parent
commit
2a491a0933
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/components/common/TopBar.vue

+ 1 - 1
src/components/common/TopBar.vue

@@ -32,7 +32,7 @@ const props = withDefaults(
     showBack?: boolean
   }>(),
   {
-    showBack: true
+    showBack: false
   }
 )