Skip to content

Commit

Permalink
fix(SelectableParticipant): fix keydown.enter event by setting a new …
Browse files Browse the repository at this point in the history
…value to modelProxy

Signed-off-by: Maksim Sukharev <[email protected]>
  • Loading branch information
Antreesy committed Sep 25, 2024
1 parent c284b1d commit 8a39610
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/BreakoutRoomsEditor/SelectableParticipant.vue
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,13 @@ export default {
t,

handleEnter(event) {
event.target.checked = !event.target.checked
if (this.isBulkSelection) {
event.preventDefault()
event.stopPropagation()
event.target.click()
} else {
this.$emit('click-participant', this.participant)
}
},
}
}
Expand Down

0 comments on commit 8a39610

Please sign in to comment.