diff --git a/react/features/participants-pane/components/web/MeetingParticipantContextMenu.js b/react/features/participants-pane/components/web/MeetingParticipantContextMenu.js index 5d76bd602..315f76376 100644 --- a/react/features/participants-pane/components/web/MeetingParticipantContextMenu.js +++ b/react/features/participants-pane/components/web/MeetingParticipantContextMenu.js @@ -306,8 +306,9 @@ class MeetingParticipantContextMenu extends Component { */ _onSendToRoom(room: Object) { return () => { - const { _participant, dispatch } = this.props; + const { _participant, dispatch, onSelect } = this.props; + onSelect(true); sendAnalytics(createBreakoutRoomsEvent('send.participant.to.room')); dispatch(sendParticipantToRoom(_participant.id, room.id)); };