mirror of
https://github.com/hrfee/jellyfin-accounts.git
synced 2025-01-02 22:40:12 +00:00
Fix UI error when 'send to address' option disabled
This commit is contained in:
parent
71f05f2348
commit
7bda2f4141
@ -114,7 +114,10 @@ if (bsVersion == 5) {
|
||||
});
|
||||
};
|
||||
} else if (bsVersion == 4) {
|
||||
document.getElementById('send_to_address_enabled').classList.remove('form-check-input');
|
||||
let send_to_address = document.getElementById('send_to_address_enabled');
|
||||
if (send_to_address) {
|
||||
send_to_address.classList.remove('form-check-input');
|
||||
}
|
||||
function createModal(id, find = false) {
|
||||
return {
|
||||
show : function() {
|
||||
|
Loading…
Reference in New Issue
Block a user