Skip to content

Commit

Permalink
fix(VSparkline): type correction for labels
Browse files Browse the repository at this point in the history
  • Loading branch information
J-Sek committed Dec 19, 2024
1 parent 3e601ee commit 54e40c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VSparkline/util/line.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { propsFactory } from '@/util'
// Types
import type { PropType } from 'vue'

export type SparklineItem = number | { value: number }
export type SparklineItem = string | number | { value: number }

export const makeLineProps = propsFactory({
autoDraw: Boolean,
Expand Down

0 comments on commit 54e40c2

Please sign in to comment.