Skip to content

Commit f0e5cc3

Browse files
authored
Merge pull request #2983 from topcoder-platform/hot-fixes-3
Deploy Fix for #2599
2 parents 13453b2 + ce5e856 commit f0e5cc3

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

src/shared/components/tc-communities/Footer2/index.jsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,18 @@
44
*/
55

66
import React from 'react';
7-
7+
import moment from 'moment';
88
import TopcoderLogoGray from '../../../../assets/images/tc-communities/logo_topcoder_gray.svg';
99
import './style.scss';
1010

11+
1112
export default function Footer2() {
1213
return (
1314
<div styleName="footer">
1415
<div styleName="content">
1516
<TopcoderLogoGray />
1617
<span styleName="copyright">
17-
&copy; Topcoder, 2017
18+
&copy; Topcoder, {moment().year()}
1819
</span>
1920
<div styleName="right">
2021
<a

src/shared/components/tc-communities/communities/veterans/Footer/index.jsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import moment from 'moment';
12
import React from 'react';
23
import PT from 'prop-types';
34
import { themr } from 'react-css-super-themr';
@@ -8,7 +9,7 @@ function Footer({ theme }) {
89
return (
910
<footer className={theme.footer}>
1011
<div className={theme.footerText}>
11-
&copy; Copyright Topcoder Ltd 2017
12+
&copy; Copyright Topcoder Ltd {moment().year()}
1213
</div>
1314
</footer>
1415
);

src/shared/components/tc-communities/communities/wipro/Footer/index.jsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import moment from 'moment';
12
import React from 'react';
23
import PT from 'prop-types';
34
import { themr } from 'react-css-super-themr';
@@ -8,7 +9,7 @@ function Footer({ theme }) {
89
return (
910
<footer className={theme.footer}>
1011
<div className={theme.footerText}>
11-
&copy; Copyright Wipro Ltd 2017
12+
&copy; Copyright Wipro Ltd {moment().year()}
1213
</div>
1314
</footer>
1415
);

0 commit comments

Comments
 (0)