瀏覽代碼

Analytics categories display correct data, but only on page reload.

Lee Morgan 5 年之前
父節點
當前提交
672eac50e7
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      views/dashboardPage/js/classes/Transaction.js

+ 1 - 1
views/dashboardPage/js/classes/Transaction.js

@@ -46,7 +46,7 @@ class Transaction{
     getIngredientQuantity(ingredient){
         let total = 0;
         for(let i = 0; i < this._recipes.length; i++){
-            total += this._recipes[i].recipe.getIngredientTotal(ingredient.id);
+            total += this._recipes[i].recipe.getIngredientTotal(ingredient.id) * this._recipes[i].quantity;
         }
 
         return total;