style: missing semicolon

This commit is contained in:
prssanna 2021-02-01 20:43:30 +05:30
parent 44a055b52f
commit 6f1664223d

View File

@ -512,7 +512,7 @@ erpnext.PointOfSale.ItemCart = class {
return `<div class="tax-row"> return `<div class="tax-row">
<div class="tax-label">${description}</div> <div class="tax-label">${description}</div>
<div class="tax-value">${format_currency(value, currency)}</div> <div class="tax-value">${format_currency(value, currency)}</div>
</div>` </div>`;
}).join(''); }).join('');
this.$totals_section.find('.taxes-container').css('display', 'flex').html(taxes_html); this.$totals_section.find('.taxes-container').css('display', 'flex').html(taxes_html);
} else { } else {