mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Color picker can't deal with 'transparent' keyword
This commit is contained in:
parent
6951762084
commit
2c6b79682e
@ -294,7 +294,10 @@ export const ColorControl: FC<ColorProps> = ({
|
||||
onVisibilityChange={() => addPreset(color)}
|
||||
tooltip={
|
||||
<TooltipContent>
|
||||
<Picker {...{ color: realValue, onChange: updateValue, onFocus, onBlur }} />
|
||||
<Picker
|
||||
color={realValue === 'transparent' ? '#000000' : realValue}
|
||||
{...{ onChange: updateValue, onFocus, onBlur }}
|
||||
/>
|
||||
{presets.length > 0 && (
|
||||
<Swatches>
|
||||
{presets.map((preset) => (
|
||||
|
Loading…
x
Reference in New Issue
Block a user