Skip to content

Commit

Permalink
fix(BaseProgress): aria-valuenow type
Browse files Browse the repository at this point in the history
  • Loading branch information
stafyniaksacha committed Dec 5, 2023
1 parent 1c2a11d commit 2215979
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/base/BaseProgress.vue
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const value = computed(() => {
if (max === 0) {
return 0
}
return typeof value === 'number' ? (value / max) * 100 : null
return typeof value === 'number' ? (value / max) * 100 : undefined
})
</script>

Expand Down

0 comments on commit 2215979

Please sign in to comment.