astashov / liftosaur

Weightlifting tracker app for coders
https://www.liftosaur.com
GNU Affero General Public License v3.0
228 stars 31 forks source link

temp vars can now increment #112

Closed Logan-Dang closed 2 months ago

Logan-Dang commented 2 months ago

Hopefully this fixes it? Tried the following:

var.totalreps = 0
for (var.i in weights) {
  var.totalreps += reps[var.i]
}
reps = var.totalreps

and works

Closes #111

astashov commented 2 months ago

Thank you so much for contributing!!!