Skip to content

Commit

Permalink
Fix duplicate key in inspector background section (#6438)
Browse files Browse the repository at this point in the history
**Problem:**

The inspector background section causes duplicate keys errors.

<img width="626" alt="image"
src="https://github.com/user-attachments/assets/2d560bc6-7c7b-4ed4-a0a7-e9d4a13a7ff6">

**Fix:**

Rename the keys for solid/gradient <> string background inputs so they
are unique.

Fixes #6437
  • Loading branch information
ruggi authored Oct 1, 2024
1 parent aa7955e commit 9ac163c
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ export const SolidBackgroundLayer = React.memo<SolidBackgroundLayerProps>((props
onMouseDown={stopPropagation}
/>
<BackgroundSolidOrGradientThumbnailControl
id={`background-layer-gradient-${props.index}`}
key={`background-layer-gradient-${props.index}`}
testId={`background-layer-gradient-${props.index}`}
id={`background-layer-solid-or-gradient-${props.index}`}
key={`background-layer-solid-or-gradient-${props.index}`}
testId={`background-layer-solid-or-gradient-${props.index}`}
value={props.value}
backgroundIndex={props.index}
useSubmitValueFactory={props.useSubmitTransformedValuesFactory}
Expand All @@ -132,9 +132,9 @@ export const SolidBackgroundLayer = React.memo<SolidBackgroundLayerProps>((props
setOpenPopup={props.setOpenPopup}
/>
<StringBackgroundColorControl
id={`background-layer-gradient-${props.index}`}
key={`background-layer-gradient-${props.index}`}
testId={`background-layer-gradient-${props.index}`}
id={`background-layer-string-${props.index}`}
key={`background-layer-string-${props.index}`}
testId={`background-layer-string-${props.index}`}
value={props.value}
backgroundIndex={props.index}
useSubmitValueFactory={props.useSubmitTransformedValuesFactory}
Expand Down

0 comments on commit 9ac163c

Please sign in to comment.