Skip to content

Commit

Permalink
Merge pull request #1509 from nextcloud/appsettingsdialog-no-navigation
Browse files Browse the repository at this point in the history
Don't show navigation of settings modal by default
  • Loading branch information
marcoambrosini authored Oct 23, 2020
2 parents 0683bf9 + aac5b3f commit fd60d3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/AppSettingsDialog/AppSettingsDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
Expand All @@ -95,7 +95,7 @@ export default {
computed: {

hasNavigation() {
if (this.isMobile || this.hideNavigation) {
if (this.isMobile || !this.showNavigation) {
return false
} else {
return true
Expand Down

0 comments on commit fd60d3b

Please sign in to comment.