Skip to content

Commit 35e7860

Browse files
committed
Fix typo
1 parent 9fe8a29 commit 35e7860

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/uui-color-slider/lib/uui-color-slider.element.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ export class UUIColorSliderElement extends LabelMixin('label', LitElement) {
330330
this.dispatchEvent(new UUIColorSliderEvent(UUIColorSliderEvent.CHANGE));
331331
}
332332

333-
get ccsPropCurrentValue() {
333+
get cssPropCurrentValue() {
334334
return this.value === 0
335335
? this.vertical
336336
? 100
@@ -370,7 +370,7 @@ export class UUIColorSliderElement extends LabelMixin('label', LitElement) {
370370
<!-- <slot name="detail"> </slot> -->
371371
<span
372372
id="color-slider__handle"
373-
style="--current-value: ${this.ccsPropCurrentValue}%;"
373+
style="--current-value: ${this.cssPropCurrentValue}%;"
374374
tabindex=${ifDefined(this.disabled ? undefined : '0')}></span>
375375
</div>
376376
${Math.round(this.value)}`;

0 commit comments

Comments
 (0)