Remove select color input on click (#708)

pull/709/head
BM 5 years ago committed by GitHub
parent e79d9f5676
commit 27a1217981
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -204,9 +204,6 @@ const ColorInput = React.forwardRef(
onPaste={e => onChange(e.clipboardData.getData("text"))}
onBlur={() => setInnerValue(color)}
ref={inputRef}
onFocus={e => {
e.target.select();
}}
/>
</div>
);

Loading…
Cancel
Save