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}>
|
<Cell col={3}>
|
||||||
<div><strong>History</strong></div>
|
<div><strong>History</strong></div>
|
||||||
<List style={{ textAlign: 'left' }}>
|
<List style={{ textAlign: 'left' }}>
|
||||||
{history.map(({ createdAt, type, createdBy }) =>
|
{history.map(({ createdAt, type, createdBy }, i) =>
|
||||||
<ListItem twoLine>
|
<ListItem twoLine key={i}>
|
||||||
<ListItemContent avatar={getIcon(type)} subtitle={createdAt}>
|
<ListItemContent title={type} avatar={getIcon(type)} subtitle={createdAt}>
|
||||||
{createdBy}
|
{createdBy}
|
||||||
</ListItemContent>
|
</ListItemContent>
|
||||||
</ListItem>)}
|
</ListItem>)}
|
||||||
|
Loading…
Reference in New Issue
Block a user