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.
This commit is contained in:
Saúl Ibarra Corretgé 2021-12-08 21:25:02 +01:00 committed by Дамян Минков
parent 2e22eb5169
commit 60dcac96a6
1 changed files with 2 additions and 1 deletions

View File

@ -306,8 +306,9 @@ class MeetingParticipantContextMenu extends Component<Props> {
*/
_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));
};