소스 검색

Create basic algorithm for predicting one day's usage of each ingredient.

Lee Morgan 5 년 전
부모
커밋
9e143bc9c6
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      views/dashboardPage/bundle.js
  2. 1 1
      views/dashboardPage/js/strands/analytics.js

+ 1 - 1
views/dashboardPage/bundle.js

@@ -3224,7 +3224,7 @@ let analytics = {
             });
     },
 
-    displayIngredient: function(ingredient){
+    displayIngredient: function(){
         if(this.ingredient === undefined  || this.transactionsByDate.length === 0){
             return;
         }

+ 1 - 1
views/dashboardPage/js/strands/analytics.js

@@ -112,7 +112,7 @@ let analytics = {
             });
     },
 
-    displayIngredient: function(ingredient){
+    displayIngredient: function(){
         if(this.ingredient === undefined  || this.transactionsByDate.length === 0){
             return;
         }