Skip to content

Commit

Permalink
changed weird name to footer
Browse files Browse the repository at this point in the history
  • Loading branch information
SudoThijn committed Jan 29, 2025
1 parent a5f2a27 commit 7962933
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/modals/menu/EditMenuModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export default {
options: [
{ label: 'rechts boven', position: 0 },
{ label: 'navigatiebalk', position: 1 },
{ label: 'onderste balk van de pagina', position: 2 },
{ label: 'footer', position: 2 },
],
value: { label: 'rechts boven', position: 0 },
},
Expand Down
2 changes: 1 addition & 1 deletion src/views/menus/MenuDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ import { EventBus } from '../../eventBus.js'
<b>Positie:</b>
<span v-if="menuStore.menuItem.position === 0">{{ menuStore.menuItem.position + 1 }} - rechts boven</span>
<span v-else-if="menuStore.menuItem.position === 1">{{ menuStore.menuItem.position + 1 }} - navigatiebalk</span>
<span v-else-if="menuStore.menuItem.position >= 2">{{ menuStore.menuItem.position + 1 }} - onderste balk van de pagina</span>
<span v-else-if="menuStore.menuItem.position >= 2">{{ menuStore.menuItem.position + 1 }} - footer</span>
<span v-else>{{ menuStore.menuItem.position + 1 }} - niet gedefinieerd</span>
</div>
<div>
Expand Down

0 comments on commit 7962933

Please sign in to comment.