1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

fixes #432 - Unable to sign in with a hidden user on the web ui

This commit is contained in:
Luke Pulverenti 2013-08-24 00:10:50 -04:00
parent bbbdc4e0c8
commit b7af0b8a16
2 changed files with 8 additions and 4 deletions

View file

@ -20,12 +20,12 @@
if (showManualForm) {
$('#divUsers', '#loginPage').hide();
$('.visualLoginForm', '#loginPage').hide();
$('#manualLoginForm', '#loginPage').show();
} else {
$('#divUsers', '#loginPage').show();
$('.visualLoginForm', '#loginPage').show();
$('#manualLoginForm', '#loginPage').hide();
LoginPage.loadUserList(users);