running-tools

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

commit b8980be2e07f957286a2031fd173eb5fae46b821
parent d2a3f8a3ff4b2f12c3e39f262b6dde65b2154c5d
Author: ashermorgan <59518073+ashermorgan@users.noreply.github.com>
Date:   Sun, 12 Sep 2021 10:04:32 -0700

Update max value of TimeInput value prop

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

diff --git a/src/components/TimeInput.vue b/src/components/TimeInput.vue @@ -31,7 +31,7 @@ export default { type: Number, default: 0, validator(value) { - return value >= 0 && value <= 86399.99; + return value >= 0 && value <= 359999.99; }, }, },