|
@@ -7,7 +7,7 @@ import { IconHelp } from '../../base/icons';
|
7
|
7
|
import { connect } from '../../base/redux';
|
8
|
8
|
import { AbstractButton, type AbstractButtonProps } from '../../base/toolbox/components';
|
9
|
9
|
import { openURLInBrowser } from '../../base/util';
|
10
|
|
-
|
|
10
|
+import { isVpaasMeeting } from '../../billing-counter/functions';
|
11
|
11
|
|
12
|
12
|
type Props = AbstractButtonProps & {
|
13
|
13
|
|
|
@@ -47,7 +47,7 @@ class HelpButton extends AbstractButton<Props, *> {
|
47
|
47
|
function _mapStateToProps(state: Object) {
|
48
|
48
|
const { userDocumentationURL } = state['features/base/config'].deploymentUrls || {};
|
49
|
49
|
const enabled = getFeatureFlag(state, HELP_BUTTON_ENABLED, true);
|
50
|
|
- const visible = typeof userDocumentationURL === 'string' && enabled;
|
|
50
|
+ const visible = typeof userDocumentationURL === 'string' && enabled && !isVpaasMeeting(state);
|
51
|
51
|
|
52
|
52
|
return {
|
53
|
53
|
_userDocumentationURL: userDocumentationURL,
|