Fix allocation not appearing

This commit is contained in:
Squidly271
2024-12-09 09:39:27 -05:00
committed by GitHub
parent 3083474d35
commit fd170fa007

View File

@@ -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');
}
}