1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00

Fix priority input for provider manage edit modal

This commit is contained in:
Qstick
2023-05-27 19:57:00 -05:00
parent b06269544c
commit 593652a84a
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);