summaryrefslogtreecommitdiffstats
path: root/web/react/components/about_build_modal.jsx
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2016-03-14 10:23:51 -0700
committer=Corey Hulen <corey@hulen.com>2016-03-14 10:23:51 -0700
commitea3f25924ea64a2dd1e73624c0d30824e1efb240 (patch)
treea4a2b2bdc37bd675fb89837713995ad44a27427b /web/react/components/about_build_modal.jsx
parent397ebec88c2db3569efd77238bf877e976492d34 (diff)
parentbf7ae0711743926cfbb031675cc3320d7a942465 (diff)
downloadchat-ea3f25924ea64a2dd1e73624c0d30824e1efb240.tar.gz
chat-ea3f25924ea64a2dd1e73624c0d30824e1efb240.tar.bz2
chat-ea3f25924ea64a2dd1e73624c0d30824e1efb240.zip
Merge branch 'master' into PLT-2115
Diffstat (limited to 'web/react/components/about_build_modal.jsx')
-rw-r--r--web/react/components/about_build_modal.jsx39
1 files changed, 24 insertions, 15 deletions
diff --git a/web/react/components/about_build_modal.jsx b/web/react/components/about_build_modal.jsx
index fe48bb48e..34b1fdccf 100644
--- a/web/react/components/about_build_modal.jsx
+++ b/web/react/components/about_build_modal.jsx
@@ -21,29 +21,38 @@ export default class AboutBuildModal extends React.Component {
let title = (
<FormattedMessage
- id='about.teamEdtion'
- defaultMessage='Team Edition'
+ id='about.teamEditiont0'
+ defaultMessage='Team Edition T0'
/>
);
+
let licensee;
- if (config.BuildEnterpriseReady === 'true' && license.IsLicensed === 'true') {
+ if (config.BuildEnterpriseReady === 'true') {
title = (
<FormattedMessage
- id='about.enterpriseEdition'
- defaultMessage='Enterprise Edition'
+ id='about.teamEditiont1'
+ defaultMessage='Team Edition T1'
/>
);
- licensee = (
- <div className='row form-group'>
- <div className='col-sm-3 info__label'>
- <FormattedMessage
- id='about.licensed'
- defaultMessage='Licensed by:'
- />
+ if (license.IsLicensed === 'true') {
+ title = (
+ <FormattedMessage
+ id='about.enterpriseEditione1'
+ defaultMessage='Enterprise Edition E1'
+ />
+ );
+ licensee = (
+ <div className='row form-group'>
+ <div className='col-sm-3 info__label'>
+ <FormattedMessage
+ id='about.licensed'
+ defaultMessage='Licensed by:'
+ />
+ </div>
+ <div className='col-sm-9'>{license.Company}</div>
</div>
- <div className='col-sm-9'>{license.Company}</div>
- </div>
- );
+ );
+ }
}
return (