jitsi-meet-react-sdk
jitsi-meet-react-sdk copied to clipboard
The configOverwrite participantsPane option doesn't work
Hello, here is my React JitsiMeeting component :
<JitsiMeeting configOverwrite={{ ... "participantsPane": { "hideModeratorSettingsTab": true, "hideMoreActionsButton": true, "hideMuteAllButton": true }, ... }} />
Despite the true values in participantsPane, I have the ‘Mute microphone’ button in participants pane:
I also tested by creating a custom-config.js file :
config.participantsPane = { hideModeratorSettingsTab: true, hideMoreActionsButton: true, hideMuteAllButton: true }
But this has no effect.
Could you please help me?
Thanks.