diff --git a/ui/plugins/quota/quota.js b/ui/plugins/quota/quota.js
index b4c1390c43b..4e94b2c318c 100644
--- a/ui/plugins/quota/quota.js
+++ b/ui/plugins/quota/quota.js
@@ -180,7 +180,7 @@ var g_quotaCurrency = '';
statementTableHead.appendTo($('').appendTo(statementTable));
var statementTableBody = $('
');
- if (startBalance) {
+ if (typeof startBalance !== 'undefined') {
var statementTableBodyRow = $('');
$('| ').html("Start Quota Balance").appendTo(statementTableBodyRow);
$(' | ').html(startBalanceDate).appendTo(statementTableBodyRow);
@@ -201,7 +201,7 @@ var g_quotaCurrency = '';
statementTableBodyRow.appendTo(statementTableBody);
}
- if (endBalance) {
+ if (typeof endBalance !== 'undefined') {
var statementTableBodyRow = $(' |
');
$('| ').html("Final Quota Balance").appendTo(statementTableBodyRow);
$(' | ').html(endBalanceDate).appendTo(statementTableBodyRow);
|