change how list ColumnLink keys are determined

This commit is contained in:
cwm 2018-01-05 08:12:34 -06:00
parent c69a23ae46
commit 6236577734
1 changed files with 1 additions and 1 deletions

View File

@ -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>,
]);