feat(participants/native) - fix joining breakout room

pull/11256/head jitsi-meet_7113
Calin Chitu 3 years ago committed by Calinteodor
parent 45e8140209
commit ef125968ce
  1. 2
      react/features/lobby/functions.js
  2. 4
      react/features/participants-pane/components/breakout-rooms/components/native/styles.js
  3. 2
      react/features/participants-pane/components/native/MeetingParticipantList.js

@ -58,7 +58,7 @@ export function showLobbyChatButton(
const { lobbyMessageRecipient, isLobbyChatActive } = state['features/chat'];
const conference = getCurrentConference(state);
const lobbyLocalId = conference.myLobbyUserId();
const lobbyLocalId = conference?.myLobbyUserId();
if (!enableLobbyChat) {
return false;

@ -71,8 +71,8 @@ export default {
},
transparentButton: {
...baseButton,
backgroundColor: 'transparent'
backgroundColor: 'transparent',
marginTop: BaseTheme.spacing[3]
},
leaveButtonLabel: {

@ -207,7 +207,7 @@ class MeetingParticipantList extends PureComponent<Props> {
// If there are only meeting participants available,
// we take the full container height
const onlyMeetingParticipants
= breakoutRooms.length === 0 && lobbyParticipants.length === 0;
= breakoutRooms?.length === 0 && lobbyParticipants.length === 0;
const containerStyle
= onlyMeetingParticipants
? styles.meetingListFullContainer : styles.meetingListContainer;

Loading…
Cancel
Save