From 6740b0861e662bf8600d7e2d961e4d6b87154f16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Fri, 12 Feb 2021 15:55:32 +0100 Subject: [PATCH] fix(rn,lobby) make sure the enable dialog follows the theme color --- .../lobby/components/native/EnableLobbyModeDialog.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/react/features/lobby/components/native/EnableLobbyModeDialog.js b/react/features/lobby/components/native/EnableLobbyModeDialog.js index 018f23e14..e087cb0db 100644 --- a/react/features/lobby/components/native/EnableLobbyModeDialog.js +++ b/react/features/lobby/components/native/EnableLobbyModeDialog.js @@ -7,12 +7,18 @@ import { ColorSchemeRegistry } from '../../../base/color-scheme'; import { CustomSubmitDialog } from '../../../base/dialog'; import { translate } from '../../../base/i18n'; import { connect } from '../../../base/redux'; +import { StyleType } from '../../../base/styles'; import { toggleLobbyMode } from '../../actions'; import styles from './styles'; type Props = { + /** + * The color-schemed stylesheet of the feature. + */ + _dialogStyles: StyleType, + /** * The Redux Dispatch function. */ @@ -51,7 +57,7 @@ class EnableLobbyModeDialog extends PureComponent { onSubmit = { this._onEnableLobbyMode } titleKey = 'lobby.dialogTitle'> - + { this.props.t('lobby.enableDialogText') }