From b71d5b474a2e49014e5832c26cd297189e61b7b1 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Thu, 20 Jun 2019 21:31:23 +1000 Subject: [PATCH] Fix BOM edit bug --- InvenTree/static/script/inventree/bom.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/InvenTree/static/script/inventree/bom.js b/InvenTree/static/script/inventree/bom.js index ac08237dea..28b6dc4b73 100644 --- a/InvenTree/static/script/inventree/bom.js +++ b/InvenTree/static/script/inventree/bom.js @@ -189,8 +189,8 @@ function loadBomTable(table, options) { if (options.editable) { cols.push({ formatter: function(value, row, index, field) { - var bEdit = ""; - var bDelt = ""; + var bEdit = ""; + var bDelt = ""; return "
" + bEdit + bDelt + "
"; }