Skip to content

Commit c8bf82c

Browse files
committed
Fix casing on dropdown item
1 parent 062aba1 commit c8bf82c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • resources/js/components/navigation

resources/js/components/navigation/View.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124

125125
<template v-if="canEdit" #branch-options="{ branch, removeBranch, stat, depth }">
126126
<DropdownItem v-if="isEntryBranch(stat)" :text="__('Edit Entry')" :href="branch.edit_url" />
127-
<DropdownItem :text="__('Edit nav item')" @click="editPage(branch)" />
127+
<DropdownItem :text="__('Edit Nav item')" @click="editPage(branch)" />
128128
<DropdownItem v-if="depth < maxDepth" :text="__('Add child nav item')" @click="linkPage(stat)" />
129129
<DropdownItem
130130
v-if="depth < maxDepth && hasCollections"

0 commit comments

Comments
 (0)