Skip to content

Commit

Permalink
Merge pull request #1267 from instantiations/issue1257
Browse files Browse the repository at this point in the history
Changes for #1257
  • Loading branch information
Johan Brichau authored Jul 20, 2021
2 parents 8dda491 + f3a8070 commit 8b86285
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ renderCurrencyTableBodyOn: html
html tableBody
title: 'Table body';
with: [
| numberPrinter |
numberPrinter := GRNumberPrinter new precision: 2.
self exchangeRates
do: [ :each |
html
Expand All @@ -12,4 +14,4 @@ renderCurrencyTableBodyOn: html
html tableData
align: 'char';
character: $.;
with: (each second printShowingDecimalPlaces: 2) ] ] ]
with: (numberPrinter print: each second) ] ] ]

0 comments on commit 8b86285

Please sign in to comment.