Add missing key to span element

This commit is contained in:
Eric NGUYEN 2022-11-04 15:09:52 +01:00
parent 9106592e6f
commit c9b5ae2f19

View file

@ -202,6 +202,7 @@ function ElementsListRow(
for (let i = 0; i < depth; i++) {
verticalBars.push(
<span
key={`${key}-${i}`}
className={`h-full border-l-2 pr-2 ${verticalBarSelectedClass}`}
></span>
);