1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-11 20:22:36 +03:00

Only show apps drawer if matrix apps labs setting ids enabled

This commit is contained in:
Richard Lewis
2017-06-27 17:40:09 +01:00
parent 8dfd047f03
commit 338a4db87f

View File

@@ -20,7 +20,9 @@ import sdk from '../../../index';
import dis from "../../../dispatcher";
import ObjectUtils from '../../../ObjectUtils';
import AppsDrawer from './AppsDrawer';
import { _t, _tJsx} from '../../../languageHandler';
import { _t, _tJsx} from '../../../languageHandler';
import UserSettingsStore from '../../../UserSettingsStore';
module.exports = React.createClass({
displayName: 'AuxPanel',
@@ -127,7 +129,7 @@ module.exports = React.createClass({
);
let appsDrawer = null;
if(this.props.showApps) {
if(UserSettingsStore.isFeatureEnabled('matrix_apps') && this.props.showApps) {
appsDrawer = <AppsDrawer ref="appsDrawer"
room={this.props.room}
userId={this.props.userId}