Fix missing comma in linear-gradient (#1506)

This commit is contained in:
king8fisher
2023-08-11 13:06:10 -04:00
committed by GitHub
parent cf543ef335
commit f8c37e0d14

View File

@@ -882,7 +882,7 @@ export default class SlColorPicker extends ShoelaceElement implements ShoelaceFo
style=${styleMap({
backgroundImage: `linear-gradient(
to right,
${this.getHexString(this.hue, this.saturation, this.brightness, 0)} 0%
${this.getHexString(this.hue, this.saturation, this.brightness, 0)} 0%,
${this.getHexString(this.hue, this.saturation, this.brightness, 100)} 100%
)`
})}