Skip to content

Commit

Permalink
types build hotfix (#2875)
Browse files Browse the repository at this point in the history
  • Loading branch information
aluarius authored Jan 18, 2023
1 parent ebd7eca commit dbf8683
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/src/components/va-slider/VaSlider.vue
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ export default defineComponent({
'aria-valuemax': props.max,
'aria-label': !slots.label && !props.label ? `current slider value is ${String(props.modelValue)}` : undefined,
'aria-labelledby': slots.label || props.label ? ariaLabelIdComputed.value : undefined,
'aria-orientation': props.vertical ? 'vertical' : 'horizontal',
'aria-orientation': (props.vertical ? 'vertical' : 'horizontal') as 'vertical' | 'horizontal',
'aria-disabled': props.disabled,
'aria-readonly': props.readonly,
'aria-valuenow': !Array.isArray(props.modelValue) ? props.modelValue : undefined,
Expand Down

0 comments on commit dbf8683

Please sign in to comment.