about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/getting_started/index.js
diff options
context:
space:
mode:
authorcwm <chriswmartin@protonmail.com>2018-01-05 08:12:34 -0600
committercwm <chriswmartin@protonmail.com>2018-01-05 08:12:34 -0600
commit6236577734f5a040415308389a45fd3b6cb1b960 (patch)
tree8de9c330a261cb74d1489694b17cfdc276cbfb33 /app/javascript/flavours/glitch/features/getting_started/index.js
parentc69a23ae4668bad91e3992dbd72e7b3a62427bf9 (diff)
change how list ColumnLink keys are determined
Diffstat (limited to 'app/javascript/flavours/glitch/features/getting_started/index.js')
-rw-r--r--app/javascript/flavours/glitch/features/getting_started/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/getting_started/index.js b/app/javascript/flavours/glitch/features/getting_started/index.js
index 89c77b507..11f58cc70 100644
--- a/app/javascript/flavours/glitch/features/getting_started/index.js
+++ b/app/javascript/flavours/glitch/features/getting_started/index.js
@@ -114,7 +114,7 @@ export default class GettingStarted extends ImmutablePureComponent {
       <div>
         <ColumnLink key='7' icon='bars' text={intl.formatMessage(messages.lists)} to='/lists' />
         {lists.map(list =>
-          <ColumnLink key={list.get('id')} to={`/timelines/list/${list.get('id')}`} icon='list-ul' text={list.get('title')} />
+          <ColumnLink key={(7 + Number(list.get('id'))).toString()} to={`/timelines/list/${list.get('id')}`} icon='list-ul' text={list.get('title')} />
         )}
       </div>,
     ]);