From fd170fa007318c0bb4affd1fd10a920686e9567f Mon Sep 17 00:00:00 2001 From: Squidly271 Date: Mon, 9 Dec 2024 09:39:27 -0500 Subject: [PATCH] Fix allocation not appearing --- emhttp/plugins/dynamix/ShareEdit.page | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/emhttp/plugins/dynamix/ShareEdit.page b/emhttp/plugins/dynamix/ShareEdit.page index 3c51ce406..2ee8a2061 100644 --- a/emhttp/plugins/dynamix/ShareEdit.page +++ b/emhttp/plugins/dynamix/ShareEdit.page @@ -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'); } }