From 47415f46020ba66091739412706e6ea699e5b879 Mon Sep 17 00:00:00 2001 From: mgabdev <> Date: Wed, 4 Nov 2020 21:02:40 -0600 Subject: [PATCH] Fixed issue in FooterBar by adding missing key MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • Fixed: - issue in FooterBar by adding missing key --- app/javascript/gabsocial/components/footer_bar.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/javascript/gabsocial/components/footer_bar.js b/app/javascript/gabsocial/components/footer_bar.js index 60a40f73..8590c30b 100644 --- a/app/javascript/gabsocial/components/footer_bar.js +++ b/app/javascript/gabsocial/components/footer_bar.js @@ -76,7 +76,7 @@ class FooterBar extends ImmutablePureComponent {
{ - buttons.map((props) => { + buttons.map((props, i) => { if (props.isHidden) return null const classes = CX({ @@ -134,6 +134,7 @@ class FooterBar extends ImmutablePureComponent { href={props.href} title={props.title} className={classes} + key={`footer-bar-item-${i}`} > {childIcon}