diff --git a/react/features/base/config/configWhitelist.js b/react/features/base/config/configWhitelist.js index f933b8a39..5e824bb82 100644 --- a/react/features/base/config/configWhitelist.js +++ b/react/features/base/config/configWhitelist.js @@ -83,6 +83,7 @@ export default [ 'debugAudioLevels', 'defaultLocalDisplayName', 'defaultRemoteDisplayName', + 'deploymentUrls', 'desktopSharingFrameRate', 'desktopSharingSources', 'disable1On1Mode', diff --git a/react/features/toolbox/components/DownloadButton.js b/react/features/toolbox/components/DownloadButton.js index fe6f4a03f..8d34fa22f 100644 --- a/react/features/toolbox/components/DownloadButton.js +++ b/react/features/toolbox/components/DownloadButton.js @@ -6,7 +6,6 @@ import { IconDownload } from '../../base/icons'; import { connect } from '../../base/redux'; import { AbstractButton, type AbstractButtonProps } from '../../base/toolbox/components'; import { openURLInBrowser } from '../../base/util'; -import { isVpaasMeeting } from '../../jaas/functions'; type Props = AbstractButtonProps & { @@ -48,7 +47,7 @@ class DownloadButton extends AbstractButton { */ function _mapStateToProps(state: Object) { const { downloadAppsUrl } = state['features/base/config'].deploymentUrls || {}; - const visible = typeof downloadAppsUrl === 'string' && !isVpaasMeeting(state); + const visible = typeof downloadAppsUrl === 'string'; return { _downloadAppsUrl: downloadAppsUrl, diff --git a/react/features/toolbox/components/HelpButton.js b/react/features/toolbox/components/HelpButton.js index e79d001cc..62cecdceb 100644 --- a/react/features/toolbox/components/HelpButton.js +++ b/react/features/toolbox/components/HelpButton.js @@ -7,7 +7,6 @@ import { IconHelp } from '../../base/icons'; import { connect } from '../../base/redux'; import { AbstractButton, type AbstractButtonProps } from '../../base/toolbox/components'; import { openURLInBrowser } from '../../base/util'; -import { isVpaasMeeting } from '../../jaas/functions'; type Props = AbstractButtonProps & { @@ -50,7 +49,7 @@ class HelpButton extends AbstractButton { function _mapStateToProps(state: Object) { const { userDocumentationURL } = state['features/base/config'].deploymentUrls || {}; const enabled = getFeatureFlag(state, HELP_BUTTON_ENABLED, true); - const visible = typeof userDocumentationURL === 'string' && enabled && !isVpaasMeeting(state); + const visible = typeof userDocumentationURL === 'string' && enabled; return { _userDocumentationURL: userDocumentationURL,