Skip to content

Commit

Permalink
refactor(client): increase length rounding so smaller values are disp…
Browse files Browse the repository at this point in the history
…layed
  • Loading branch information
NotExpectedYet committed Oct 1, 2022
1 parent b3a1b0f commit 548cc98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/entry/history.runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -1202,7 +1202,7 @@ class History {
${current.totalVolume.toFixed(2)}m3
</td>
<td>
${(current.totalLength / 1000).toFixed(2)}m
${(current.totalLength / 1000).toFixed(4)}m
</td>
<td>
${current.totalWeight.toFixed(2)}g
Expand Down

0 comments on commit 548cc98

Please sign in to comment.