vue-color-gradient-picker
vue-color-gradient-picker copied to clipboard
Incorrect style string
Hi, Thanks for great library!
I've noticed, that generated color style is missing closing bracket.
For example:
onGradientChange(color) { console.log(color.style) },
logs:
linear-gradient(0deg,rgba(51, 26, 26, 1) 0%,rgba(255, 0, 0, 1) 100%
while it should:
linear-gradient(0deg,rgba(51, 26, 26, 1) 0%,rgba(255, 0, 0, 1) 100%)