1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

Fix priority input for provider manage edit modal

(cherry picked from commit 593652a84a45aea7b542e682c08453f4ee88871c)
This commit is contained in:
Qstick
2023-05-27 19:57:00 -05:00
parent 1d4b6d4cad
commit 4fc1ee0aff
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ function parseValue(props, value) {
} = props;
if (value == null || value === '') {
return min;
return null;
}
let newValue = isFloat ? parseFloat(value) : parseInt(value);