fix lint error

master
Gordon Williams 2025-03-14 11:39:40 +00:00
parent 95d8b54803
commit 254d33323d
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ function menuDistance() {
/*LANG*/"per hour": () => showGraph({id:"stepsPerHour",range:"hour",field:"steps",mult:distMult, back:menuDistance}), /*LANG*/"per hour": () => showGraph({id:"stepsPerHour",range:"hour",field:"steps",mult:distMult, back:menuDistance}),
/*LANG*/"per day": () => { /*LANG*/"per day": () => {
showGraph({id:"stepsPerDay",range:"day",field:"steps",mult:distMult, back:menuDistance}) showGraph({id:"stepsPerDay",range:"day",field:"steps",mult:distMult, back:menuDistance})
drawHorizontalLine(settings.stepGoal * (mult || 1)); drawHorizontalLine(settings.stepGoal * (distMult || 1));
} }
}); });
} }