mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
fix: Fix FlowTimeline duplicate key (#8754)
This commit is contained in:
@@ -149,7 +149,7 @@
|
||||
height={Math.min(400, (subItems?.length ?? 0) * barHeight)}
|
||||
itemCount={subItems?.length ?? 0}
|
||||
itemSize={barHeight}
|
||||
getKey={(index) => subItems?.[index]?.id}
|
||||
getKey={(index) => subItems?.[index]?.id ?? `_${index}`}
|
||||
>
|
||||
{#snippet item({ index, style })}
|
||||
{@const b = subItems?.[index]}
|
||||
|
||||
Reference in New Issue
Block a user