summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
Diffstat (limited to 'settings')
-rw-r--r--settings/js/users/users.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/js/users/users.js b/settings/js/users/users.js
index 8b97485e1b2..f0ba433e862 100644
--- a/settings/js/users/users.js
+++ b/settings/js/users/users.js
@@ -571,7 +571,7 @@ var UserList = {
//asymptotic curve approaching 50% at 10GB to visualize used stace with infinite quota
usedQuota = 95 * (1 - (1 / (usedInGB + 1)));
}
- $tr.find('.quota-user-progress').val(usedQuota);
+ $tr.find('.quota-user-progress').val( isNaN(usedQuota) ? 0 : usedQuota );
if (usedQuota > 80) {
$tr.find('.quota-user-progress').addClass('warn');
} else {