Merge pull request #16783 from Scroody/I-16777
fix: Propagate layout and layout setting don't show up when disabled features is enabled as a custom parameter.
This commit is contained in:
commit
d8b5f944f4
@ -11,6 +11,7 @@ import BBBMenu from '/imports/ui/components/common/menu/component';
|
|||||||
import Styled from './styles';
|
import Styled from './styles';
|
||||||
import { colorPrimary } from '/imports/ui/stylesheets/styled-components/palette';
|
import { colorPrimary } from '/imports/ui/stylesheets/styled-components/palette';
|
||||||
import { PANELS, ACTIONS, LAYOUT_TYPE } from '../../layout/enums';
|
import { PANELS, ACTIONS, LAYOUT_TYPE } from '../../layout/enums';
|
||||||
|
import {isLayoutsEnabled} from '/imports/ui/services/features';
|
||||||
|
|
||||||
const propTypes = {
|
const propTypes = {
|
||||||
amIPresenter: PropTypes.bool.isRequired,
|
amIPresenter: PropTypes.bool.isRequired,
|
||||||
@ -218,21 +219,24 @@ class ActionsDropdown extends PureComponent {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
if (amIPresenter && showPushLayout) {
|
if (amIPresenter && showPushLayout && isLayoutsEnabled()) {
|
||||||
actions.push({
|
actions.push({
|
||||||
icon: 'send',
|
icon: 'send',
|
||||||
label: intl.formatMessage(intlMessages.propagateLayoutLabel),
|
label: intl.formatMessage(intlMessages.propagateLayoutLabel),
|
||||||
key: 'propagate layout',
|
key: 'propagate layout',
|
||||||
onClick: amIPresenter ? setMeetingLayout : setPushLayout,
|
onClick: amIPresenter ? setMeetingLayout : setPushLayout,
|
||||||
});
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isLayoutsEnabled()){
|
||||||
actions.push({
|
actions.push({
|
||||||
icon: 'send',
|
icon: 'send',
|
||||||
label: intl.formatMessage(intlMessages.layoutModal),
|
label: intl.formatMessage(intlMessages.layoutModal),
|
||||||
key: 'layoutModal',
|
key: 'layoutModal',
|
||||||
onClick: () => mountModal(<LayoutModalContainer {...this.props} />),
|
onClick: () => mountModal(<LayoutModalContainer {...this.props} />),
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
return actions;
|
return actions;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user