Skip to content

Commit 8ae4c1c

Browse files
committed
fix: do not render dot with size 0
1 parent e8da1be commit 8ae4c1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Circle/CircleContainer.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<component :is="circleType" :options="computedOptions" />
1313
</g>
1414
</svg>
15-
<circle-dot v-if="options.dot" :options="computedOptions" />
15+
<circle-dot v-if="options.dot.size" :options="computedOptions" />
1616
</div>
1717
</template>
1818

0 commit comments

Comments
 (0)