summaryrefslogtreecommitdiffstats
path: root/webapp/components/admin_console/license_settings.jsx
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2016-04-13 14:32:00 -0400
committerCorey Hulen <corey@hulen.com>2016-04-13 11:32:00 -0700
commit4d8b6355038c2608a5722aa41e0d60bd49c3fc16 (patch)
tree61eb24e692272a6a6a5ca171449b4e9cad9075e4 /webapp/components/admin_console/license_settings.jsx
parenta9bd9843d41a2c3b8d0893b30c0c7d0754ba5dbf (diff)
downloadchat-4d8b6355038c2608a5722aa41e0d60bd49c3fc16.tar.gz
chat-4d8b6355038c2608a5722aa41e0d60bd49c3fc16.tar.bz2
chat-4d8b6355038c2608a5722aa41e0d60bd49c3fc16.zip
Allow removing of license without turning off enterprise features (#2690)
Diffstat (limited to 'webapp/components/admin_console/license_settings.jsx')
-rw-r--r--webapp/components/admin_console/license_settings.jsx6
1 files changed, 1 insertions, 5 deletions
diff --git a/webapp/components/admin_console/license_settings.jsx b/webapp/components/admin_console/license_settings.jsx
index ad310d8e0..30a97a73b 100644
--- a/webapp/components/admin_console/license_settings.jsx
+++ b/webapp/components/admin_console/license_settings.jsx
@@ -131,7 +131,6 @@ class LicenseSettings extends React.Component {
licenseKey = (
<div className='col-sm-8'>
<button
- disabled={this.props.config.LdapSettings.Enable}
className='btn btn-danger'
onClick={this.handleRemove}
id='remove-button'
@@ -145,10 +144,7 @@ class LicenseSettings extends React.Component {
<br/>
<br/>
<p className='help-text'>
- <FormattedHTMLMessage
- id='admin.licence.keyMigration'
- defaultMessage='If you’re migrating servers you may need to remove your license key from this server in order to install it on a new server. To start, <a href="http://mattermost.com" target="_blank">disable all Enterprise Edition features on this server</a>. This will enable the ability to remove the license key and downgrade this server from Enterprise Edition to Team Edition.'
- />
+ {'If you migrate servers you may need to remove your license key to install it elsewhere. You can remove the key here, which will revert functionality to that of Team Edition.'}
</p>
</div>
);