From 60dcac96a60583d3776cd0ec0697674e514ab23d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Wed, 8 Dec 2021 21:25:02 +0100 Subject: [PATCH] fix(breakout-rooms) fix non-functional context menu Close the menu after sending a participant to a breakout room, that will detach the context menu from the current participant and it will work properly when they join back. --- .../components/web/MeetingParticipantContextMenu.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)); };