Skip to content

Commit

Permalink
oops fix that
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndr committed Oct 18, 2023
1 parent 563f5b3 commit 6f4f183
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions _includes/dough-ratio-calculator.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ html`
<li><input value="${() => d.T}" @input="${e => { d.T = e.target.value }}" /> salt
</ul>
<table><caption>Bakers Percentages</caption>
<tr><td>starter:</td><td>${() => pct(d.S/d.F)}</td></tr>
<tr> <td>water:</td><td>${() => pct(d.W/d.F)}</td></tr>
<tr> <td>flour:</td><td>100% always</td> </tr>
${d.Y && `<tr><td>yeast:</td><td>${() => pct(d.Y/d.F)}</td></tr>`}
${d.T && `<tr> <td>salt:</td><td>${() => pct(d.T/d.F)}</td></tr>`}
<tr><td>starter:</td><td>${() => pct(d.S/d.F)}</td> </tr>
<tr> <td>water:</td><td>${() => pct(d.W/d.F)}</td> </tr>
<tr> <td>flour:</td><td>100% always</td> </tr>
<tr> <td>yeast:</td><td>${() => d.Y && pct(d.Y/d.F) || 'n/a'}</td></tr>
<tr> <td>salt:</td><td>${() => d.T && pct(d.T/d.F) || 'n/a'}</td></tr>
</table>
<p><caption>ratios by starter</caption>
<br/> <abbr title="starter">1</abbr>
Expand Down

0 comments on commit 6f4f183

Please sign in to comment.