Skip to content

Commit d037a79

Browse files
[autofix.ci] apply automated fixes
1 parent 02eaa7d commit d037a79

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

app/components/Chart/SplitSparkline.vue

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,10 @@ const props = defineProps<{
1919
year: string
2020
month: string
2121
day: string
22-
},
22+
}
2323
showLastDatapointEstimation: boolean
2424
}>()
2525
26-
2726
const { locale } = useI18n()
2827
const colorMode = useColorMode()
2928
const resolvedMode = shallowRef<'light' | 'dark'>('light')
@@ -95,7 +94,7 @@ const configs = computed(() => {
9594
const dashIndices = props.showLastDatapointEstimation
9695
? Array.from(new Set([...(unit.dashIndices ?? []), lastIndex]))
9796
: unit.dashIndices
98-
97+
9998
return {
10099
a11y: {
101100
translations: {
@@ -148,7 +147,7 @@ const configs = computed(() => {
148147
line: {
149148
color: unit.color ?? palette[i],
150149
dashIndices,
151-
dashArray: 3
150+
dashArray: 3,
152151
},
153152
plot: {
154153
radius: 6,

0 commit comments

Comments
 (0)