Skip to content

Commit

Permalink
Merge pull request #3075 from nextcloud/bugfix/noid/fix-lisitem-tabbe…
Browse files Browse the repository at this point in the history
…d-navigation
  • Loading branch information
skjnldsv authored Aug 19, 2022
2 parents 14b17a4 + 497991c commit ea5551c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/NcListItem/NcListItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -531,11 +531,11 @@ export default {
handleTab(e) {
if (this.focused && this.hasActions) {
e.preventDefault()
this.$refs.actions.$refs.menuButton.focus()
this.$refs.actions.$refs.menuButton.$el.focus()
this.focused = false
} else {
this.displayActionsOnHoverFocus = false
this.$refs.actions.$refs.menuButton.blur()
this.$refs.actions.$refs.menuButton.$el.blur()
}
},
Expand Down

0 comments on commit ea5551c

Please sign in to comment.