jitsi / jitsi-meet-react-sdk

React SDK for Jitsi Meet
Apache License 2.0
65 stars 36 forks source link

The configOverwrite participantsPane option doesn't work #43

Open Benlasc opened 3 months ago

Benlasc commented 3 months ago

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.