diff --git a/InvenTree/templates/js/build.js b/InvenTree/templates/js/build.js index 31917aab26..398796773c 100644 --- a/InvenTree/templates/js/build.js +++ b/InvenTree/templates/js/build.js @@ -693,9 +693,6 @@ function loadBuildOutputAllocationTable(buildInfo, output, options={}) { var qA = rowA.quantity; var qB = rowB.quantity; - qA *= output.quantity; - qB *= output.quantity; - // Handle the case where both numerators are zero if ((aA == 0) && (aB == 0)) { return (qA > qB) ? 1 : -1;