summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2015-09-24 12:53:41 -0400
committerHarrison Healey <harrisonmhealey@gmail.com>2015-09-24 12:53:41 -0400
commit75b1b43fd85ec4fbf5b669d52fb5195dbfa18631 (patch)
tree117d5bdada9d136119823032b787cc40988c263f
parent627e4f1c2bbb0fac77ac092549b0c88245eff972 (diff)
parente6697a447ea95c47abcced13144d8d062afce0bb (diff)
downloadchat-75b1b43fd85ec4fbf5b669d52fb5195dbfa18631.tar.gz
chat-75b1b43fd85ec4fbf5b669d52fb5195dbfa18631.tar.bz2
chat-75b1b43fd85ec4fbf5b669d52fb5195dbfa18631.zip
Merge pull request #783 from mattermost/plt-287
PLT-287 Hiding export from UI
-rw-r--r--web/react/components/team_settings_modal.jsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/web/react/components/team_settings_modal.jsx b/web/react/components/team_settings_modal.jsx
index 0513c811f..8ffbdc6d0 100644
--- a/web/react/components/team_settings_modal.jsx
+++ b/web/react/components/team_settings_modal.jsx
@@ -36,7 +36,9 @@ export default class TeamSettingsModal extends React.Component {
let tabs = [];
tabs.push({name: 'general', uiName: 'General', icon: 'glyphicon glyphicon-cog'});
tabs.push({name: 'import', uiName: 'Import', icon: 'glyphicon glyphicon-upload'});
- tabs.push({name: 'export', uiName: 'Export', icon: 'glyphicon glyphicon-download'});
+
+ // To enable export uncomment this line
+ //tabs.push({name: 'export', uiName: 'Export', icon: 'glyphicon glyphicon-download'});
tabs.push({name: 'feature', uiName: 'Advanced', icon: 'glyphicon glyphicon-wrench'});
return (