We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0ddff3 commit 1b68417Copy full SHA for 1b68417
CHANGELOG.md
@@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
22
- Background color of sections on routine page and training session page
23
- Omit charts that contain no data
24
- Hide empty columns in training tables
25
+- Consider sets without RPE value to be hard sets
26
27
### Fixed
28
frontend/src/data.rs
@@ -654,7 +654,7 @@ impl TrainingSession {
654
.iter()
655
.filter_map(|e| match e {
656
TrainingSessionElement::Set { rpe, .. } => {
657
- if rpe.unwrap_or(0.0) >= 7.0 {
+ if rpe.unwrap_or(10.0) >= 7.0 {
658
Some(1)
659
} else {
660
None
0 commit comments