|
@@ -7,7 +7,6 @@ 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
|
|
-import { isVpaasMeeting } from '../../jaas/functions';
|
11
|
10
|
|
12
|
11
|
type Props = AbstractButtonProps & {
|
13
|
12
|
|
|
@@ -50,7 +49,7 @@ class HelpButton extends AbstractButton<Props, *> {
|
50
|
49
|
function _mapStateToProps(state: Object) {
|
51
|
50
|
const { userDocumentationURL } = state['features/base/config'].deploymentUrls || {};
|
52
|
51
|
const enabled = getFeatureFlag(state, HELP_BUTTON_ENABLED, true);
|
53
|
|
- const visible = typeof userDocumentationURL === 'string' && enabled && !isVpaasMeeting(state);
|
|
52
|
+ const visible = typeof userDocumentationURL === 'string' && enabled;
|
54
|
53
|
|
55
|
54
|
return {
|
56
|
55
|
_userDocumentationURL: userDocumentationURL,
|