From c1f11184afbcb926979ca98497413796d32f2d2d Mon Sep 17 00:00:00 2001 From: Michael Winter Date: Wed, 1 Apr 2026 16:57:00 +0200 Subject: [PATCH] Add input listener back for spinner buttons --- webapp/path_navigator.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/webapp/path_navigator.html b/webapp/path_navigator.html index 101e9b0..fbb5bd0 100644 --- a/webapp/path_navigator.html +++ b/webapp/path_navigator.html @@ -752,6 +752,11 @@ } }); + // Also trigger on spinner button clicks + document.getElementById("fundamentalInput").addEventListener("input", () => { + setFundamental(); + }); + async function setFundamental() { const input = document.getElementById("fundamentalInput"); const fundamental = parseFloat(input.value);