diff --git a/interface_config.js b/interface_config.js index 32f8f221a..c45590c2c 100644 --- a/interface_config.js +++ b/interface_config.js @@ -101,6 +101,11 @@ var interfaceConfig = { GENERATE_ROOMNAMES_ON_WELCOME_PAGE: true, + /** + * Hide the logo on the deep linking pages. + */ + HIDE_DEEP_LINKING_LOGO: false, + /** * Hide the invite prompt in the header when alone in the meeting. */ diff --git a/react/features/deep-linking/components/DeepLinkingDesktopPage.web.js b/react/features/deep-linking/components/DeepLinkingDesktopPage.web.js index c5d102966..d37f5d42b 100644 --- a/react/features/deep-linking/components/DeepLinkingDesktopPage.web.js +++ b/react/features/deep-linking/components/DeepLinkingDesktopPage.web.js @@ -72,7 +72,7 @@ class DeepLinkingDesktopPage
extends Component
{ */ render() { const { t } = this.props; - const { NATIVE_APP_NAME, SHOW_DEEP_LINKING_IMAGE } = interfaceConfig; + const { HIDE_DEEP_LINKING_LOGO, NATIVE_APP_NAME, SHOW_DEEP_LINKING_IMAGE } = interfaceConfig; const rightColumnStyle = SHOW_DEEP_LINKING_IMAGE ? null : { width: '100%' }; @@ -82,9 +82,13 @@ class DeepLinkingDesktopPage
extends Component
{