Skip to content

Commit bb7b621

Browse files
Fix new compile issues after merge from develop
1 parent 7b093dd commit bb7b621

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/ColorField/ColorField.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export const ColorField = ({
123123
large
124124
style={{ [`--eccgui-colorfield-palette-color`]: color[1] } as CSSProperties}
125125
>
126-
{color[1]}
126+
{typeof color[1] === "string" ? color[1] : color[1].toString()}
127127
</Tag>
128128
</Tooltip>
129129
</RadioButton>,

0 commit comments

Comments
 (0)