Avoid printing "()" if the ingredient doesn't have a quantity
This commit is contained in:
parent
e871c5c3d5
commit
e52d17f257
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@
|
|||
<ul>
|
||||
{{range .recipe.Steps}}
|
||||
{{range .Ingredients}}
|
||||
<li>{{.Name}} ({{.Amount.QuantityRaw}}{{if ne .Amount.Unit ""}} {{.Amount.Unit}}{{end}})</li>
|
||||
<li>{{.Name}} {{if ne .Amount.QuantityRaw ""}}({{.Amount.QuantityRaw}}{{if ne .Amount.Unit ""}} {{.Amount.Unit}}{{end}}){{end}}</li>
|
||||
{{end}}
|
||||
{{end}}
|
||||
</ul>
|
||||
|
|
Loading…
Reference in a new issue