diff --git a/InvenTree/templates/js/translated/part.js b/InvenTree/templates/js/translated/part.js index e51e0a4149..1a78e945bc 100644 --- a/InvenTree/templates/js/translated/part.js +++ b/InvenTree/templates/js/translated/part.js @@ -742,7 +742,7 @@ function performStocktake(partId, options={}) { part_quantity += item.quantity; if (item.serial && item.quantity == 1) { - quantity = `{% trans "Serial" %}: ${item.serial}` + quantity = `{% trans "Serial" %}: ${item.serial}`; } quantity += stockStatusDisplay(item.status, {classes: 'float-right'}); diff --git a/InvenTree/templates/js/translated/stock.js b/InvenTree/templates/js/translated/stock.js index bf33c4ebb8..f8e79c92ba 100644 --- a/InvenTree/templates/js/translated/stock.js +++ b/InvenTree/templates/js/translated/stock.js @@ -19,7 +19,6 @@ makeIconBadge, makeIconButton, makeOptionsList, - makePartIcons, modalEnable, modalSetContent, modalSetTitle,