mirror of https://github.com/ElemeFE/element
ColorPicker: Fix handle error hex color string (#14793)
* fix(ColorPicker): Fix handle error hex color string * Update color.js * Update color.jspull/14874/head
parent
ea55f525a1
commit
53df27e48f
|
@ -249,6 +249,7 @@ export default class Color {
|
|||
}
|
||||
} else if (value.indexOf('#') !== -1) {
|
||||
const hex = value.replace('#', '').trim();
|
||||
if (!/^(?:[0-9a-fA-F]{3}){1,2}$/.test(hex)) return;
|
||||
let r, g, b;
|
||||
|
||||
if (hex.length === 3) {
|
||||
|
|
Loading…
Reference in New Issue