fix(hide-buttons-on-jwt) Fix getting disabled buttons (#12326)

pull/12327/head jitsi-meet_7907
Horatiu Muresan 2 years ago committed by GitHub
parent 5c2ec5df54
commit 02da4a1c42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      react/features/toolbox/functions.any.ts

@ -24,7 +24,7 @@ export function isAudioMuteButtonDisabled(state: IState) {
export function getJwtDisabledButtons(state: IState) {
return Object.keys(FEATURES_TO_BUTTONS_MAPPING).reduce((acc: string[], current: string) => {
if (!isJwtFeatureEnabled(state, current, true)) {
acc.push(current);
acc.push(FEATURES_TO_BUTTONS_MAPPING[current as keyof typeof FEATURES_TO_BUTTONS_MAPPING]);
}
return acc;

Loading…
Cancel
Save