From 8b90d7353f504732b293ed0bc9ab1252af5a6d26 Mon Sep 17 00:00:00 2001 From: Squidly271 Date: Fri, 4 Apr 2025 13:13:44 -0400 Subject: [PATCH] Fix: Enable Apply button when adding a VLAN --- emhttp/plugins/dynamix/Eth0.page | 1 + 1 file changed, 1 insertion(+) diff --git a/emhttp/plugins/dynamix/Eth0.page b/emhttp/plugins/dynamix/Eth0.page index bf077aefe..03393acda 100644 --- a/emhttp/plugins/dynamix/Eth0.page +++ b/emhttp/plugins/dynamix/Eth0.page @@ -468,6 +468,7 @@ function checkNetworkAccess(form) { } function addVLAN(port) { + $('input[value=""],input[value="Apply"]').prop('disabled',false); var index = 1; while ($('#index-'+port+'-'+index).length) index++; var template = $($('
').loadTemplate($('#network-template-'+port)).html().replace(/INDEX/g,index));