From 7595ae4090b43977a3d16cfe98a4825697c992e0 Mon Sep 17 00:00:00 2001 From: Thibaut Girka Date: Thu, 16 Aug 2018 20:42:52 +0200 Subject: [PATCH] Fix one GettingStarted ColumnLink not having a key --- .../glitch/features/getting_started/index.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/javascript/flavours/glitch/features/getting_started/index.js b/app/javascript/flavours/glitch/features/getting_started/index.js index ea10d74b4..fb2e92278 100644 --- a/app/javascript/flavours/glitch/features/getting_started/index.js +++ b/app/javascript/flavours/glitch/features/getting_started/index.js @@ -129,20 +129,20 @@ export default class GettingStarted extends ImmutablePureComponent { } if (!multiColumn || !columns.find(item => item.get('id') === 'BOOKMARKS')) { - navItems.push(); + navItems.push(); } if (myAccount.get('locked')) { - navItems.push(); + navItems.push(); } - navItems.push(); + navItems.push(); listItems = listItems.concat([ -
- +
+ {lists.map(list => - + )}
, ]);