From c060bc08159cf1986630c468cce236ca68cea188 Mon Sep 17 00:00:00 2001 From: Oliver Date: Mon, 20 Dec 2021 13:30:54 +1100 Subject: [PATCH] Float "depleted" badge to the right --- InvenTree/templates/js/translated/stock.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/templates/js/translated/stock.js b/InvenTree/templates/js/translated/stock.js index 2541f77272..6360f396bb 100644 --- a/InvenTree/templates/js/translated/stock.js +++ b/InvenTree/templates/js/translated/stock.js @@ -1458,7 +1458,7 @@ function loadStockTable(table, options) { } if (row.quantity <= 0) { - html += `{% trans "Depleted" %}`; + html += `{% trans "Depleted" %}`; } return html;