summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-05-15 19:37:05 +0200
committerxengineering <me@xengineering.eu>2024-05-15 19:37:05 +0200
commit29c8c305c52b97248e505cdfc6b86e96f57d0a53 (patch)
tree64f27928f2b82055730d3bcb85cfff1fd7ccf709
parent45a0a10c070e3dba33be01d4de4d094fd7f7394a (diff)
downloadceres-29c8c305c52b97248e505cdfc6b86e96f57d0a53.tar
ceres-29c8c305c52b97248e505cdfc6b86e96f57d0a53.tar.zst
ceres-29c8c305c52b97248e505cdfc6b86e96f57d0a53.zip
view: Require ingredient type
It does make sense to add an ingredient only with a type and no amount or unit like 'salt'. But it does not make sense to add an ingredient without a type like '5' or '2 l'.
-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 e925737..931ffcf 100644
--- a/view/html/recipe-ingredient.html
+++ b/view/html/recipe-ingredient.html
@@ -1,6 +1,6 @@
{{define "recipe-ingredient"}} <p>
<input class="amount" type="text" placeholder="Amount" value="{{.Amount}}">
<input class="unit" type="text" placeholder="Unit" value="{{.Unit}}">
- <input class="type" type="text" placeholder="Type" value="{{.Type}}">
+ <input class="type" type="text" placeholder="Type" value="{{.Type}}" required>
<button type="button" onclick="parentNode.remove();">remove ingredient</button>
</p>{{end}}