Add input listener back for spinner buttons

This commit is contained in:
Michael Winter 2026-04-01 16:57:00 +02:00
parent e819c374e4
commit c1f11184af

View file

@ -752,6 +752,11 @@
} }
}); });
// Also trigger on spinner button clicks
document.getElementById("fundamentalInput").addEventListener("input", () => {
setFundamental();
});
async function setFundamental() { async function setFundamental() {
const input = document.getElementById("fundamentalInput"); const input = document.getElementById("fundamentalInput");
const fundamental = parseFloat(input.value); const fundamental = parseFloat(input.value);