From f8c37e0d146d8df822dc2eb8906369a5d9132f70 Mon Sep 17 00:00:00 2001 From: king8fisher <140904760+king8fisher@users.noreply.github.com> Date: Fri, 11 Aug 2023 13:06:10 -0400 Subject: [PATCH] Fix missing comma in linear-gradient (#1506) --- src/components/color-picker/color-picker.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/color-picker/color-picker.component.ts b/src/components/color-picker/color-picker.component.ts index ac5c1e43d..614385bea 100644 --- a/src/components/color-picker/color-picker.component.ts +++ b/src/components/color-picker/color-picker.component.ts @@ -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% )` })}