summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-05-17 15:51:45 +0200
committerxengineering <me@xengineering.eu>2024-05-17 17:14:29 +0200
commitc61e45a5a260d9804ebc4f54814edf1e1b471ac3 (patch)
tree0d0edce4b602c7f7a974ac8a3033267acebc9449
parentd14aece3295405b4377ea20aabd9c621aace4922 (diff)
downloadceres-c61e45a5a260d9804ebc4f54814edf1e1b471ac3.tar
ceres-c61e45a5a260d9804ebc4f54814edf1e1b471ac3.tar.zst
ceres-c61e45a5a260d9804ebc4f54814edf1e1b471ac3.zip
view: Use number input for ingredient amount
This accepts only real numbers with a minimum step of 0.001 as input for the amount field of a recipe ingredient. The browser has the chance to give the user direct feedback that a non-numeric string will not work.
-rw-r--r--view/html/recipe-ingredient.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/html/recipe-ingredient.html b/view/html/recipe-ingredient.html
index 931ffcf..5672eed 100644
--- a/view/html/recipe-ingredient.html
+++ b/view/html/recipe-ingredient.html
@@ -1,5 +1,5 @@
{{define "recipe-ingredient"}} <p>
- <input class="amount" type="text" placeholder="Amount" value="{{.Amount}}">
+ <input class="amount" type="number" step="0.001" placeholder="Amount" value="{{.Amount}}">
<input class="unit" type="text" placeholder="Unit" value="{{.Unit}}">
<input class="type" type="text" placeholder="Type" value="{{.Type}}" required>
<button type="button" onclick="parentNode.remove();">remove ingredient</button>