From e5478a426b48d2d04321ed8238dad5ab4fe862a4 Mon Sep 17 00:00:00 2001 From: James Chapman Date: Mon, 14 Oct 2024 15:09:54 +0100 Subject: [PATCH] Fix last purchased quantity not set when adding loose item --- Groceries/wwwroot/js/controllers/transaction-item-form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Groceries/wwwroot/js/controllers/transaction-item-form.js b/Groceries/wwwroot/js/controllers/transaction-item-form.js index 4e3f3c0..a0c6081 100644 --- a/Groceries/wwwroot/js/controllers/transaction-item-form.js +++ b/Groceries/wwwroot/js/controllers/transaction-item-form.js @@ -51,7 +51,7 @@ export default class TransactionItemFormController extends Controller { if (!price.value) { price.value = option.getAttribute("data-price"); } - if (quantity.value || (!unit.value && quantity.value === "1")) { + if (!quantity.value || (!unit.value && quantity.value === "1")) { quantity.value = option.getAttribute("data-quantity") || (!unit.value ? "1" : ""); } }