Skip to content

Commit

Permalink
fix(VTimeline): don't set custom properties to undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
KaelWD committed Mar 13, 2022
1 parent c9c5103 commit 87bab30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VTimeline/VTimeline.tsx
Expand Up @@ -83,7 +83,7 @@ export const VTimeline = defineComponent({
]}
style={{
'--v-timeline-line-thickness': convertToUnit(props.lineThickness),
'--v-timeline-line-inset': convertToUnit(props.lineInset || undefined),
'--v-timeline-line-inset': convertToUnit(props.lineInset),
}}
>
{ (props.truncateLine === 'none' || props.truncateLine === 'end') && (
Expand Down

0 comments on commit 87bab30

Please sign in to comment.