diff options
author | cwm <chriswmartin@protonmail.com> | 2018-01-05 08:12:34 -0600 |
---|---|---|
committer | cwm <chriswmartin@protonmail.com> | 2018-01-05 08:12:34 -0600 |
commit | 6236577734f5a040415308389a45fd3b6cb1b960 (patch) | |
tree | 8de9c330a261cb74d1489694b17cfdc276cbfb33 | |
parent | c69a23ae4668bad91e3992dbd72e7b3a62427bf9 (diff) |
change how list ColumnLink keys are determined
-rw-r--r-- | app/javascript/flavours/glitch/features/getting_started/index.js | 2 |
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>, ]); |