From c99676abcc0c201e88cb7039052dba999c178695 Mon Sep 17 00:00:00 2001 From: paul-arg Date: Sat, 23 Mar 2024 20:37:27 +0100 Subject: [PATCH] fix default value for target seconds --- apps/elapsed_t/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/elapsed_t/app.js b/apps/elapsed_t/app.js index 7d1df0c57..225f20c63 100644 --- a/apps/elapsed_t/app.js +++ b/apps/elapsed_t/app.js @@ -212,7 +212,7 @@ var menu = { format: function (v) { return pad2(v); } }, 'Seconds': { - value: 0, + value: data.target.s, min: 0, max: 59, wrap: true, onchange: v => { data.target.s = v;