summaryrefslogtreecommitdiffstats
path: root/web/react/components/admin_console/team_settings.jsx
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-09-24 11:08:39 -0700
committer=Corey Hulen <corey@hulen.com>2015-09-24 11:08:39 -0700
commit57269dcaf407c3c5bee3b33c1c18907a5958e255 (patch)
treec7265a1c9b6510600d664358dd3a24c5996712d9 /web/react/components/admin_console/team_settings.jsx
parente58f15a28698122525b274bac01252e53fb1170c (diff)
downloadchat-57269dcaf407c3c5bee3b33c1c18907a5958e255.tar.gz
chat-57269dcaf407c3c5bee3b33c1c18907a5958e255.tar.bz2
chat-57269dcaf407c3c5bee3b33c1c18907a5958e255.zip
Removing default theme no longer in use
Diffstat (limited to 'web/react/components/admin_console/team_settings.jsx')
-rw-r--r--web/react/components/admin_console/team_settings.jsx22
1 files changed, 0 insertions, 22 deletions
diff --git a/web/react/components/admin_console/team_settings.jsx b/web/react/components/admin_console/team_settings.jsx
index fefc0e936..3e0890f98 100644
--- a/web/react/components/admin_console/team_settings.jsx
+++ b/web/react/components/admin_console/team_settings.jsx
@@ -28,7 +28,6 @@ export default class TeamSettings extends React.Component {
var config = this.props.config;
config.TeamSettings.SiteName = React.findDOMNode(this.refs.SiteName).value.trim();
- config.TeamSettings.DefaultThemeColor = React.findDOMNode(this.refs.DefaultThemeColor).value.trim();
config.TeamSettings.RestrictCreationToDomains = React.findDOMNode(this.refs.RestrictCreationToDomains).value.trim();
config.TeamSettings.EnableTeamCreation = React.findDOMNode(this.refs.EnableTeamCreation).checked;
config.TeamSettings.EnableUserCreation = React.findDOMNode(this.refs.EnableUserCreation).checked;
@@ -125,27 +124,6 @@ export default class TeamSettings extends React.Component {
<div className='form-group'>
<label
className='control-label col-sm-4'
- htmlFor='DefaultThemeColor'
- >
- {'Default Theme Color:'}
- </label>
- <div className='col-sm-8'>
- <input
- type='text'
- className='form-control'
- id='DefaultThemeColor'
- ref='DefaultThemeColor'
- placeholder='Ex "#2389D7"'
- defaultValue={this.props.config.TeamSettings.DefaultThemeColor}
- onChange={this.handleChange}
- />
- <p className='help-text'>{'Default theme color for team sites.'}</p>
- </div>
- </div>
-
- <div className='form-group'>
- <label
- className='control-label col-sm-4'
htmlFor='EnableTeamCreation'
>
{'Enable Team Creation: '}