mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
add missing key
This commit is contained in:
parent
84f5c6b602
commit
4116a854c8
@ -115,9 +115,9 @@ class EditFeatureToggleWrapper extends React.Component {
|
||||
<Cell col={3}>
|
||||
<div><strong>History</strong></div>
|
||||
<List style={{ textAlign: 'left' }}>
|
||||
{history.map(({ createdAt, type, createdBy }) =>
|
||||
<ListItem twoLine>
|
||||
<ListItemContent avatar={getIcon(type)} subtitle={createdAt}>
|
||||
{history.map(({ createdAt, type, createdBy }, i) =>
|
||||
<ListItem twoLine key={i}>
|
||||
<ListItemContent title={type} avatar={getIcon(type)} subtitle={createdAt}>
|
||||
{createdBy}
|
||||
</ListItemContent>
|
||||
</ListItem>)}
|
||||
|
Loading…
Reference in New Issue
Block a user