diff --git a/bigbluebutton-html5/imports/ui/components/actions-bar/actions-dropdown/component.jsx b/bigbluebutton-html5/imports/ui/components/actions-bar/actions-dropdown/component.jsx index f818c41198..dc00a6fdd5 100755 --- a/bigbluebutton-html5/imports/ui/components/actions-bar/actions-dropdown/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/actions-bar/actions-dropdown/component.jsx @@ -50,7 +50,10 @@ class ActionsDropdown extends Component { } render() { - const { intl } = this.props; + const { intl, isUserPresenter } = this.props; + + if (!isUserPresenter) return null; + return ( diff --git a/bigbluebutton-html5/imports/ui/components/actions-bar/component.jsx b/bigbluebutton-html5/imports/ui/components/actions-bar/component.jsx index 15043eff45..2eedd5e341 100755 --- a/bigbluebutton-html5/imports/ui/components/actions-bar/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/actions-bar/component.jsx @@ -13,10 +13,13 @@ export default class ActionsBar extends Component { } renderForPresenter() { + + const { isUserPresenter } = this.props; + return ( - + @@ -29,7 +32,7 @@ export default class ActionsBar extends Component { - + );