Fix avgDrainage returning undefined

master^2^2
RKBoss6 2025-08-02 14:47:38 -04:00 committed by GitHub
parent 2901c34a23
commit 611fa88828
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -112,9 +112,9 @@
return {
batt: batt,
hrsLeft: hrsLeft,
avgDrainage:data.avgDrainage,
avgDrainage:data.avgBattDrainage,
totalHours:data.totalHours,
cycles:data.cycles
cycles:data.totalCycles
};
}