WebUI: disallow unnecessary quotes in property name

Those two forms are the same and from now on we enforce to one style.

PR #22051.
This commit is contained in:
Chocobo1
2024-12-24 22:25:18 +08:00
committed by GitHub
parent bbc3c2832f
commit 7487cd7e6d
41 changed files with 144 additions and 143 deletions

View File

@@ -103,10 +103,10 @@
fetch("api/v2/torrents/setShareLimits", {
method: "POST",
body: new URLSearchParams({
"hashes": hashesList.join("|"),
"ratioLimit": ratioLimitValue,
"seedingTimeLimit": seedingTimeLimitValue,
"inactiveSeedingTimeLimit": inactiveSeedingTimeLimitValue
hashes: hashesList.join("|"),
ratioLimit: ratioLimitValue,
seedingTimeLimit: seedingTimeLimitValue,
inactiveSeedingTimeLimit: inactiveSeedingTimeLimitValue
})
})
.then(async (response) => {