Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bjarnef committed Sep 28, 2023
1 parent 9fe8a29 commit 35e7860
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/uui-color-slider/lib/uui-color-slider.element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ export class UUIColorSliderElement extends LabelMixin('label', LitElement) {
this.dispatchEvent(new UUIColorSliderEvent(UUIColorSliderEvent.CHANGE));
}

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

0 comments on commit 35e7860

Please sign in to comment.