Skip to content

Commit

Permalink
Fix listitem tabbed navigation
Browse files Browse the repository at this point in the history
Signed-off-by: Marco Ambrosini <[email protected]>
  • Loading branch information
marcoambrosini committed Aug 19, 2022
1 parent eb7cf3e commit bd8aa28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ListItem/ListItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -517,11 +517,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 bd8aa28

Please sign in to comment.