running-tools

A collection of tools for runners and their coaches
git clone https://git.ashermorgan.net/running-tools/
Log | Files | Refs | README

commit 798d3c1beb2841890c50334496872ca5a7b5174a
parent ffb11a11570eded74d17db9f12fe8e062c2e52a1
Author: ashermorgan <59518073+ashermorgan@users.noreply.github.com>
Date:   Sat, 17 Feb 2024 13:02:21 -0800

Fix Race Calculator preference saving error

Diffstat:
Msrc/views/RaceCalculator.vue | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/views/RaceCalculator.vue b/src/views/RaceCalculator.vue @@ -342,7 +342,7 @@ export default { * Save the current selected target set */ selectedTargetSet(newValue) { - storage.set('pace-calculator-target-set', newValue); + storage.set('race-calculator-target-set', newValue); }, },