mirror of
https://github.com/Radarr/Radarr
synced 2024-12-25 17:27:59 +00:00
Fixed model binder for checkboxes
This commit is contained in:
parent
c3c6c8ac01
commit
9345211536
1 changed files with 2 additions and 1 deletions
|
@ -412,7 +412,8 @@
|
||||||
break;
|
break;
|
||||||
case 'checkbox':
|
case 'checkbox':
|
||||||
if (convertedValue) {
|
if (convertedValue) {
|
||||||
el.attr('checked', 'checked');
|
//Fixing this while we wait for an official update
|
||||||
|
el.prop('checked', 'checked');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
el.removeAttr('checked');
|
el.removeAttr('checked');
|
||||||
|
|
Loading…
Reference in a new issue