mirror of
https://github.com/Fluffy-Bean/TastyBites.git
synced 2025-06-14 14:13:12 +00:00
Format numbers with leading 0s
Grow map on checkout Correct some typos
This commit is contained in:
parent
60ee8e49ae
commit
e0abea8cef
5 changed files with 30 additions and 12 deletions
|
@ -46,7 +46,7 @@
|
|||
<hr>
|
||||
<button class="button evil" on:click={yeet}><Trash /></button>
|
||||
</li>
|
||||
<li class="basket-item-price">£{item.data.price * item.amount} (£{item.data.price})</li>
|
||||
<li class="basket-item-price">£{(item.data.price * item.amount).toFixed(2)} (£{item.data.price.toFixed(2)})</li>
|
||||
</ul>
|
||||
|
||||
<ul class="basket-item-labels">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue