add 15 options in quantity of products
parent
c9bf3f7906
commit
badadbc0bf
|
@ -227,7 +227,7 @@
|
|||
<small class="text-success">sofort verfügbar</small>
|
||||
<br>
|
||||
<select class="form-select form-select-sm select-quantity" data-id="${item.id}" style="width:125px;" aria-label="Default select example">`;
|
||||
for(let i = 1; i <= 5; i++){
|
||||
for(let i = 1; i <= 15; i++){
|
||||
if(objProductInfo.quantity == i) elementProduct += `<option selected value="${i}">Anzahl: ${i}</option>`;
|
||||
else elementProduct += `<option value="${i}">Anzahl: ${i}</option>`;
|
||||
}
|
||||
|
@ -251,7 +251,7 @@
|
|||
<small class="text-success">sofort verfügbar</small>
|
||||
<br>
|
||||
<select class="form-select form-select-sm select-quantity" data-id="${item.id}" style="width:125px;" aria-label="Default select example">`;
|
||||
for(let i = 1; i <= 5; i++){
|
||||
for(let i = 1; i <= 15; i++){
|
||||
if(objProductInfo.quantity == i) elementProduct += `<option selected value="${i}">Anzahl: ${i}</option>`;
|
||||
else elementProduct += `<option value="${i}">Anzahl: ${i}</option>`;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue