Skip to content

Commit fd4819a

Browse files
saghuldamencho
authored andcommitted
fix(toolbar) restore security button backwards compat
In #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.
1 parent 7ca04cc commit fd4819a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

react/features/toolbox/components/web/Toolbox.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -945,7 +945,7 @@ class Toolbox extends Component<Props> {
945945
key = 'fullscreen'
946946
onClick = { this._onToolbarToggleFullScreen }
947947
text = { _fullScreen ? t('toolbar.exitFullScreen') : t('toolbar.enterFullScreen') } />,
948-
this._shouldShowButton('security')
948+
(this._shouldShowButton('security') || this._shouldShowButton('info'))
949949
&& <SecurityDialogButton
950950
key = 'security'
951951
showLabel = { true } />,

0 commit comments

Comments
 (0)