Skip to content

Commit

Permalink
Hide sign-in button if useAuth is false
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardoboss committed Oct 19, 2022
1 parent 1fcf997 commit d112763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
:to="{name: 'home'}"
/>
<nav-tree-node v-for="(n, i) of sortedNavTree" :node="n" :key="i"/>
<small class="sign-in-prompt">
<small class="sign-in-prompt" v-if="$store.state.settings.useAuth">
<span v-if="navTreeHasHiddenNodes">Some pages may require additional permissions to view.<br/></span>
<v-btn size="x-small"
variant="outlined"
Expand Down

0 comments on commit d112763

Please sign in to comment.