fix(Progress): initial indicator style when percent is 0

This commit is contained in:
Benjamin Canac
2024-05-20 14:19:22 +02:00
parent b497e427df
commit d2442a1e47

View File

@@ -75,7 +75,7 @@ const percent = computed(() => {
})
const indicatorStyle = computed(() => {
if (!percent.value) {
if (percent.value === undefined) {
return
}