Skip to content

Commit

Permalink
cleanup and version update
Browse files Browse the repository at this point in the history
  • Loading branch information
bandinopla committed Jan 11, 2024
1 parent b95ef36 commit 3e17ed9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions public/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
- 2.19.5 : 2024-01-11
* Bugfix in SBD Stats section: unit convertion from KG to LB
* Updated lifts data

- 2.19.4 : 2023-12-30
* restore "send global message" button that I removed by accident on the last update... :)
* Bug FIX: @campertug reported that the download journal was not working. Indeed, it had a but, my bad!
Expand Down
2 changes: 1 addition & 1 deletion src/pages/SBDStatsPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ const CatChart = ({ series, inlbs }) => {
<div style={{ fontSize:"1.3em"}}><Divider style={{margin:"10px 0", overflow:"hidden"}}/>

{ serie.params?.estimated? "~" : ""}
{ serie.params?.weight>0 && <strong><WeightValue inkg={inlbs?0:1} value={ serie.params.weight*(inlbs? LBS2KG : 1) }/>!!</strong> }
{ serie.params?.weight>0 && <strong><WeightValue inkg={inlbs?0:1} value={ serie.params.weight*(inlbs? LBS2KG : 1) }/></strong> }
{ serie.params?.bw>0 && <> @ <strong>{serie.params.bw}</strong></>}


Expand Down

0 comments on commit 3e17ed9

Please sign in to comment.