Skip to content

Commit e9c51e6

Browse files
committed
fix: do not use empty auto-closing div
1 parent a0ed79d commit e9c51e6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/components/Chart/SplitSparkline.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ const configs = computed(() => {
244244

245245
<template #skeleton>
246246
<!-- This empty div overrides the default built-in scanning animation on load -->
247-
<div />
247+
<div></div>
248248
</template>
249249
</VueUiSparkline>
250250
</div>

app/components/Compare/FacetBarChart.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ const config = computed<VueUiHorizontalBarConfig>(() => {
345345

346346
<template #skeleton>
347347
<!-- This empty div overrides the default built-in scanning animation on load -->
348-
<div />
348+
<div></div>
349349
</template>
350350
</VueUiHorizontalBar>
351351
</ClientOnly>

app/components/Package/WeeklyDownloadStats.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ const config = computed<VueUiSparklineConfig>(() => {
434434

435435
<template #skeleton>
436436
<!-- This empty div overrides the default built-in scanning animation on load -->
437-
<div />
437+
<div></div>
438438
</template>
439439
</VueUiSparkline>
440440
<template #fallback>

0 commit comments

Comments
 (0)