Skip to content

Commit 1fee793

Browse files
authored
Merge pull request #2690 from PrakashDurlabhji/issue_2599
issue #2599 fixes
2 parents aa0bbee + eb36d12 commit 1fee793

File tree

2 files changed

+4
-2
lines changed
  • src/shared/components/tc-communities/communities

2 files changed

+4
-2
lines changed

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)