Skip to content

Commit

Permalink
Merge pull request #13426 from nextcloud/backport/13397/stable30
Browse files Browse the repository at this point in the history
  • Loading branch information
Antreesy authored Oct 1, 2024
2 parents 0d42810 + 9d7f17c commit 1abb7a9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/BreakoutRoomsEditor/SelectableParticipant.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
:aria-label="participantAriaLabel"
type="checkbox"
class="selectable-participant__checkbox"
@keydown.enter="handleEnter">
@keydown.enter.stop.prevent="handleEnter">
<!-- Participant's avatar -->
<AvatarWrapper :id="actorId"
token="new"
Expand Down Expand Up @@ -139,7 +139,11 @@ export default {
t,
handleEnter(event) {
event.target.checked = !event.target.checked
if (this.isBulkSelection) {
event.target.click()
} else {
this.$emit('click-participant', this.participant)
}
},
}
}
Expand Down

0 comments on commit 1abb7a9

Please sign in to comment.