diff options
author | xengineering <me@xengineering.eu> | 2024-05-15 19:37:05 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-05-15 19:37:05 +0200 |
commit | 29c8c305c52b97248e505cdfc6b86e96f57d0a53 (patch) | |
tree | 64f27928f2b82055730d3bcb85cfff1fd7ccf709 | |
parent | 45a0a10c070e3dba33be01d4de4d094fd7f7394a (diff) | |
download | ceres-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.html | 2 |
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}} |