mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
fix(toolbar) restore security button backwards compat
In https://github.com/jitsi/jitsi-meet/pull/8673 we inadvertently removed the backwards compatibility code which would show the security button when the "info" button is configured in interface_config. The security button replaced the info button.
This commit is contained in:
committed by
Дамян Минков
parent
7ca04ccb0f
commit
fd4819aeca
@@ -945,7 +945,7 @@ class Toolbox extends Component<Props> {
|
||||
key = 'fullscreen'
|
||||
onClick = { this._onToolbarToggleFullScreen }
|
||||
text = { _fullScreen ? t('toolbar.exitFullScreen') : t('toolbar.enterFullScreen') } />,
|
||||
this._shouldShowButton('security')
|
||||
(this._shouldShowButton('security') || this._shouldShowButton('info'))
|
||||
&& <SecurityDialogButton
|
||||
key = 'security'
|
||||
showLabel = { true } />,
|
||||
|
||||
Reference in New Issue
Block a user