Fix quantity field blank when adding item not previously purchased

This commit is contained in:
James Chapman 2023-08-11 16:21:47 +01:00
parent 6d932b2c84
commit c28f67b4ae
Signed by: jamsch0
GPG Key ID: 765FE58130277547

View File

@ -32,7 +32,7 @@ export default class TransactionItemFormController extends Controller {
this.priceTarget.value = option.getAttribute("data-price");
}
if (!this.quantityTarget.value || this.quantityTarget.value === "1") {
this.quantityTarget.value = option.getAttribute("data-quantity");
this.quantityTarget.value = option.getAttribute("data-quantity") || "1";
}
}
}