mirror of
https://github.com/unraid/webgui.git
synced 2026-01-07 01:59:52 -06:00
Fix allocation not appearing
This commit is contained in:
@@ -764,11 +764,11 @@ function updateScreen(cache, slow) {
|
||||
break;
|
||||
}
|
||||
|
||||
/* Check secondary dropdown index and show/hide moreSettings2 */
|
||||
if (secondaryDropdown.selectedIndex === 1) {
|
||||
/* Check secondary and primary dropdown index and show/hide moreSettings2 */
|
||||
if (secondaryDropdown.selectedIndex === 1 || primaryDropdown.selectedIndex === 0) {
|
||||
$('#moreSettings2').show('slow');
|
||||
} else {
|
||||
$('#moreSettings2').hide(slow);
|
||||
$('#moreSettings2').hide('slow');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user