From 72cd8970215d0a749eb22c83bc47c2c965393027 Mon Sep 17 00:00:00 2001 From: Oliver Date: Fri, 19 May 2023 14:17:34 +1000 Subject: [PATCH] Table fix --- InvenTree/templates/js/translated/company.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/InvenTree/templates/js/translated/company.js b/InvenTree/templates/js/translated/company.js index 350b4b3123..7370658eba 100644 --- a/InvenTree/templates/js/translated/company.js +++ b/InvenTree/templates/js/translated/company.js @@ -1246,10 +1246,10 @@ function loadSupplierPartTable(table, url, options) { title: '{% trans "Pack Units" %}', sortable: true, formatter: function(value, row) { - var output = `${formatDecimal(value)}`; + var output = `${value}`; if (row.part_detail && row.part_detail.units) { - output += ` [${row.part_detail.units}]`; + output += ``; } return output;