Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
pull/6669/head
John Molakvoæ (skjnldsv) 9 years ago
parent 08c718da64
commit c1795b0611
No known key found for this signature in database
GPG Key ID: FB5ACEED51955BF8
  1. 2
      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 {

Loading…
Cancel
Save