From e263b2a8c05b8dfaea0b6cfe410e405b994caaf5 Mon Sep 17 00:00:00 2001 From: Oliver Date: Tue, 7 Mar 2023 21:16:53 +1100 Subject: [PATCH] Bug fix for rendering allocations against build outputs (#4459) --- InvenTree/templates/js/translated/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/templates/js/translated/build.js b/InvenTree/templates/js/translated/build.js index c476301605..8e91ce3855 100644 --- a/InvenTree/templates/js/translated/build.js +++ b/InvenTree/templates/js/translated/build.js @@ -1717,7 +1717,7 @@ function loadBuildOutputAllocationTable(buildInfo, output, options={}) { detailFormatter: function(index, row, element) { // Contruct an 'inner table' which shows which stock items have been allocated - var subTableId = `allocation-table-${row.pk}`; + var subTableId = `allocation-table-${outputId}-${row.pk}`; var html = `
`;