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:
parent
2e22eb5169
commit
60dcac96a6
|
@ -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));
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue