diff --git a/react/features/security/components/security-dialog/SecurityDialog.js b/react/features/security/components/security-dialog/SecurityDialog.js index bcadeb5cfb..29ad89cd6c 100644 --- a/react/features/security/components/security-dialog/SecurityDialog.js +++ b/react/features/security/components/security-dialog/SecurityDialog.js @@ -42,6 +42,11 @@ type Props = { */ _passwordNumberOfDigits: ?number, + /** + * Indicates whether e2ee will be displayed or not. + */ + _showE2ee: boolean, + /** * Action that sets the conference password. */ @@ -64,6 +69,7 @@ function SecurityDialog({ _locked, _password, _passwordNumberOfDigits, + _showE2ee, setPassword }: Props) { const [ passwordEditEnabled, setPasswordEditEnabled ] = useState(false); @@ -93,8 +99,13 @@ function SecurityDialog({ passwordNumberOfDigits = { _passwordNumberOfDigits } setPassword = { setPassword } setPasswordEditEnabled = { setPasswordEditEnabled } /> -
-