mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 14:08:03 -06:00
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:
@@ -600,7 +600,7 @@ const initializeWindows = () => {
|
||||
url: "api/v2/torrents/recheck",
|
||||
method: "post",
|
||||
data: {
|
||||
"hashes": hashes.join("|"),
|
||||
hashes: hashes.join("|"),
|
||||
},
|
||||
onSuccess: () => {
|
||||
updateMainData();
|
||||
@@ -694,7 +694,7 @@ const initializeWindows = () => {
|
||||
paddingHorizontal: 0,
|
||||
width: 800,
|
||||
height: 420,
|
||||
resizeLimit: { "x": [800], "y": [420] }
|
||||
resizeLimit: { x: [800], y: [420] }
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user