From aac5b3f3928e164ebd3fd8f219c5b9c68a6b9ef9 Mon Sep 17 00:00:00 2001 From: Marco Ambrosini Date: Thu, 22 Oct 2020 16:41:20 +0200 Subject: [PATCH] Don't show navigation by default Signed-off-by: Marco Ambrosini --- src/components/AppSettingsDialog/AppSettingsDialog.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/AppSettingsDialog/AppSettingsDialog.vue b/src/components/AppSettingsDialog/AppSettingsDialog.vue index 4afe3f49a1..35ea48dcde 100644 --- a/src/components/AppSettingsDialog/AppSettingsDialog.vue +++ b/src/components/AppSettingsDialog/AppSettingsDialog.vue @@ -75,9 +75,9 @@ export default { required: true, }, /** - * Hides the navigation on desktop if true + * Shows the navigation on desktop if true */ - hideNavigation: { + showNavigation: { type: Boolean, default: false, }, @@ -95,7 +95,7 @@ export default { computed: { hasNavigation() { - if (this.isMobile || this.hideNavigation) { + if (this.isMobile || !this.showNavigation) { return false } else { return true