Merge pull request #16186 from storybookjs/color-control-format-toggle

Controls: Hide color control format toggle when no value
This commit is contained in:
Michael Shilman 2021-09-30 11:13:31 +08:00 committed by GitHub
commit 97fecef0ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -358,7 +358,7 @@ export const ColorControl: FC<ColorProps> = ({
onFocus={(e: FocusEvent<HTMLInputElement>) => e.target.select()}
placeholder="Choose color..."
/>
<ToggleIcon icon="markup" onClick={cycleColorSpace} />
{value ? <ToggleIcon icon="markup" onClick={cycleColorSpace} /> : null}
</Wrapper>
);
};