summaryrefslogtreecommitdiffstats
path: root/webapp/components/header_footer_template.jsx
diff options
context:
space:
mode:
authorenahum <nahumhbl@gmail.com>2016-12-05 10:19:12 -0300
committerHarrison Healey <harrisonmhealey@gmail.com>2016-12-05 08:19:12 -0500
commit145876681f03f68d2fcdd4f0339f6b2b9f7b9958 (patch)
treea1d46412813338d5e9453e3fc515dd52188cef91 /webapp/components/header_footer_template.jsx
parent05783664cd91e278913db5504e60bb8bc2992cb6 (diff)
downloadchat-145876681f03f68d2fcdd4f0339f6b2b9f7b9958.tar.gz
chat-145876681f03f68d2fcdd4f0339f6b2b9f7b9958.tar.bz2
chat-145876681f03f68d2fcdd4f0339f6b2b9f7b9958.zip
Fix react warnings and part of backstage (#4706)
Diffstat (limited to 'webapp/components/header_footer_template.jsx')
-rw-r--r--webapp/components/header_footer_template.jsx4
1 files changed, 4 insertions, 0 deletions
diff --git a/webapp/components/header_footer_template.jsx b/webapp/components/header_footer_template.jsx
index 0c5f53861..b508d9ba5 100644
--- a/webapp/components/header_footer_template.jsx
+++ b/webapp/components/header_footer_template.jsx
@@ -21,6 +21,7 @@ export default class NotLoggedIn extends React.Component {
if (global.window.mm_config.HelpLink) {
content.push(
<a
+ key='help_link'
id='help_link'
className='pull-right footer-link'
target='_blank'
@@ -35,6 +36,7 @@ export default class NotLoggedIn extends React.Component {
if (global.window.mm_config.TermsOfServiceLink) {
content.push(
<a
+ key='terms_link'
id='terms_link'
className='pull-right footer-link'
target='_blank'
@@ -49,6 +51,7 @@ export default class NotLoggedIn extends React.Component {
if (global.window.mm_config.PrivacyPolicyLink) {
content.push(
<a
+ key='privacy_link'
id='privacy_link'
className='pull-right footer-link'
target='_blank'
@@ -63,6 +66,7 @@ export default class NotLoggedIn extends React.Component {
if (global.window.mm_config.AboutLink) {
content.push(
<a
+ key='about_link'
id='about_link'
className='pull-right footer-link'
target='_blank'