summaryrefslogtreecommitdiffstats
path: root/webapp/components/about_build_modal.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/about_build_modal.jsx')
-rw-r--r--webapp/components/about_build_modal.jsx7
1 files changed, 5 insertions, 2 deletions
diff --git a/webapp/components/about_build_modal.jsx b/webapp/components/about_build_modal.jsx
index 71aee93c2..6fd2d8c03 100644
--- a/webapp/components/about_build_modal.jsx
+++ b/webapp/components/about_build_modal.jsx
@@ -1,4 +1,4 @@
-// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
+// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import {Modal} from 'react-bootstrap';
@@ -158,7 +158,10 @@ export default class AboutBuildModal extends React.Component {
<div className='form-group about-modal__copyright'>
<FormattedMessage
id='about.copyright'
- defaultMessage='Copyright 2016 Mattermost, Inc. All rights reserved'
+ defaultMessage='Copyright 2015 - {currentYear} Mattermost, Inc. All rights reserved'
+ values={{
+ currentYear: new Date().getFullYear()
+ }}
/>
</div>
</div>