fix(ui): add list key
This commit is contained in:
parent
95cff55e6c
commit
709fbedf6e
1 changed files with 1 additions and 2 deletions
|
|
@ -70,10 +70,9 @@ function OverviewPanel(props: Props) {
|
|||
</div>}>
|
||||
<VerticalPointerLine />
|
||||
{selectedFeatures.map((feature: any, index: number) => (
|
||||
<div className={cn('border-b last:border-none', { 'bg-white': index % 2 })}>
|
||||
<div key={feature} className={cn('border-b last:border-none', { 'bg-white': index % 2 })}>
|
||||
<EventRow
|
||||
isGraph={feature === 'PERFORMANCE'}
|
||||
key={feature}
|
||||
title={feature}
|
||||
list={resources[feature]}
|
||||
renderElement={(pointer: any) => <TimelinePointer pointer={pointer} type={feature} />}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue