Skip to content

Commit

Permalink
fix(group.vue): adds .self to keypress listener (#490)
Browse files Browse the repository at this point in the history
Prevents listening for bubbled events

closes #488
  • Loading branch information
2xAA authored Dec 9, 2020
1 parent c89f95e commit d81d7ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Group.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
focusElement: true
}"
tabindex="0"
@keydown="removeGroup"
@keydown.self="removeGroup"
>
<div
class="group__controls"
Expand Down

0 comments on commit d81d7ac

Please sign in to comment.