Fix tests

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
John Molakvoæ (skjnldsv) 2017-09-28 11:12:52 +02:00
parent 08c718da64
commit c1795b0611
No known key found for this signature in database
GPG Key ID: FB5ACEED51955BF8
1 changed files with 1 additions and 1 deletions

View File

@ -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 {