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 Jan 15, 2025
1 parent c07c749 commit 2a3ab5c
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 2a3ab5c

Please sign in to comment.