Explorar o código

Change units on inventory check card to uppercase

Lee Morgan %!s(int64=6) %!d(string=hai) anos
pai
achega
dfa8ed987b
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      views/dashboardPage/home.js

+ 1 - 1
views/dashboardPage/home.js

@@ -98,7 +98,7 @@ window.homeStrandObj = {
             ingredientCheck.children[1].children[0].onclick = ()=>{input.value--};
             input.value = merchant.inventory[rands[i]].quantity;
             ingredientCheck.children[1].children[2].onclick = ()=>{input.value++}
-            ingredientCheck.children[2].innerText = merchant.inventory[rands[i]].ingredient.unit;
+            ingredientCheck.children[2].innerText = merchant.inventory[rands[i]].ingredient.unit.toUpperCase();
 
             ul.appendChild(ingredientCheck);
         }