Update usage bar to warn when greater than 100%

This commit is contained in:
Rory Powell 2023-04-30 22:57:08 +01:00
parent 38d0fd943a
commit bad6eb30f4
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
onMount(() => {
unlimited = isUnlimited()
percentage = getPercentage()
if (warnWhenFull && percentage === 100) {
if (warnWhenFull && percentage >= 100) {
showWarning = true
}
})