Fix: use change event instead of input for spinner buttons
This commit is contained in:
parent
c1f11184af
commit
b4d6ea81a1
|
|
@ -752,8 +752,8 @@
|
|||
}
|
||||
});
|
||||
|
||||
// Also trigger on spinner button clicks
|
||||
document.getElementById("fundamentalInput").addEventListener("input", () => {
|
||||
// Trigger on spinner button clicks (change event fires on blur after value change)
|
||||
document.getElementById("fundamentalInput").addEventListener("change", () => {
|
||||
setFundamental();
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue