WebUI: disallow number literals with zero fractions or dangling dots

Javascript treats them all the same as `Number`.
This commit is contained in:
Chocobo1
2025-08-26 17:21:22 +08:00
parent 86acc01b1a
commit acab056fe4
8 changed files with 21 additions and 20 deletions

View File

@@ -131,7 +131,7 @@ window.qBittorrent.FileTree ??= (() => {
}
calculateRemaining() {
this.remaining = this.isIgnored() ? 0 : (this.size * (1.0 - (this.progress / 100)));
this.remaining = this.isIgnored() ? 0 : (this.size * (1 - (this.progress / 100)));
}
serialize() {