diff options
author | cwm <chriswmartin@protonmail.com> | 2018-01-05 09:00:48 -0600 |
---|---|---|
committer | cwm <chriswmartin@protonmail.com> | 2018-01-05 09:00:48 -0600 |
commit | 9fc08e48618dd0541c36c614366f8d4434ea2644 (patch) | |
tree | 4539054374810c8a5faa90133c9e19c3f4698a71 | |
parent | 6236577734f5a040415308389a45fd3b6cb1b960 (diff) |
add key to lists div
-rw-r--r-- | app/javascript/flavours/glitch/features/getting_started/index.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/javascript/flavours/glitch/features/getting_started/index.js b/app/javascript/flavours/glitch/features/getting_started/index.js index 11f58cc70..1b05c4da1 100644 --- a/app/javascript/flavours/glitch/features/getting_started/index.js +++ b/app/javascript/flavours/glitch/features/getting_started/index.js @@ -111,10 +111,10 @@ export default class GettingStarted extends ImmutablePureComponent { navItems.push(<ColumnLink key='6' icon='ellipsis-h' text={intl.formatMessage(messages.misc)} to='/getting-started-misc' />); listItems = listItems.concat([ - <div> - <ColumnLink key='7' icon='bars' text={intl.formatMessage(messages.lists)} to='/lists' /> + <div key='7'> + <ColumnLink key='8' icon='bars' text={intl.formatMessage(messages.lists)} to='/lists' /> {lists.map(list => - <ColumnLink key={(7 + Number(list.get('id'))).toString()} to={`/timelines/list/${list.get('id')}`} icon='list-ul' text={list.get('title')} /> + <ColumnLink key={(8 + Number(list.get('id'))).toString()} to={`/timelines/list/${list.get('id')}`} icon='list-ul' text={list.get('title')} /> )} </div>, ]); |