Merge pull request #15827 from bigbluebutton/waiting-users
Option to hide waiting users icon when no pending users
This commit is contained in:
commit
942f75f478
@ -15,6 +15,7 @@ const propTypes = {
|
||||
};
|
||||
|
||||
const ROLE_MODERATOR = Meteor.settings.public.user.role_moderator;
|
||||
const ALWAYS_SHOW_WAITING_ROOM = Meteor.settings.public.app.alwaysShowWaitingRoomUI;
|
||||
|
||||
class UserContent extends PureComponent {
|
||||
render() {
|
||||
@ -26,7 +27,7 @@ class UserContent extends PureComponent {
|
||||
compact,
|
||||
} = this.props;
|
||||
|
||||
const showWaitingRoom = (isGuestLobbyMessageEnabled && isWaitingRoomEnabled)
|
||||
const showWaitingRoom = (ALWAYS_SHOW_WAITING_ROOM && isWaitingRoomEnabled)
|
||||
|| pendingUsers.length > 0;
|
||||
|
||||
return (
|
||||
|
@ -57,6 +57,7 @@ public:
|
||||
allowUserLookup: false
|
||||
dynamicGuestPolicy: true
|
||||
enableGuestLobbyMessage: true
|
||||
alwaysShowWaitingRoomUI: true
|
||||
enableLimitOfViewersInWebcam: false
|
||||
enableMultipleCameras: true
|
||||
# Allow users to open webcam video modal/preview when video is already
|
||||
|
Loading…
Reference in New Issue
Block a user