From 74b552e132de9d84589a05eb93666f8f6631d793 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Thu, 21 Jul 2016 20:21:57 +0300 Subject: [PATCH] Show 0% tax rates in line items --- public/built.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/built.js b/public/built.js index 407cb42b2898..3659f1bce2d7 100644 --- a/public/built.js +++ b/public/built.js @@ -31465,7 +31465,7 @@ NINJA.invoiceLines = function(invoice) { str += tax1.toString() + '%'; } if (item.tax_name2) { - if (tax1) { + if (item.tax_name1) { str += ' '; } str += tax2.toString() + '%';