jitsi-meet-react-sdk icon indicating copy to clipboard operation
jitsi-meet-react-sdk copied to clipboard

The configOverwrite participantsPane option doesn't work

Open Benlasc opened this issue 9 months ago • 0 comments

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:

jitsi

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.

Benlasc avatar May 10 '24 09:05 Benlasc