Skip to content

Commit

Permalink
Merge pull request #6226 from wofferl/fix_tabbing
Browse files Browse the repository at this point in the history
fix(NcAppNavigationItem): TypeError: this.$refs.actions.$refs.menuButton is undefined
  • Loading branch information
susnux authored Nov 26, 2024
2 parents 730022d + 2e1f069 commit 32ca57f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/NcAppNavigationItem/NcAppNavigationItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -753,10 +753,10 @@ export default {
}
if (this.focused) {
e.preventDefault()
this.$refs.actions.$refs.menuButton.$el.focus()
this.$refs.actions.$refs.triggerButton.$el.focus()
this.focused = false
} else {
this.$refs.actions.$refs.menuButton.$el.blur()
this.$refs.actions.$refs.triggerButton.$el.blur()
}
},
Expand Down

0 comments on commit 32ca57f

Please sign in to comment.