From ba31df26028cd040e37f9e95cb393f666c43a1c3 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Mon, 11 May 2020 08:23:24 +0300 Subject: [PATCH] Update groups-common.js Remove unused assignment Signed-off-by: XhmikosR --- scripts/pi-hole/js/groups-common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pi-hole/js/groups-common.js b/scripts/pi-hole/js/groups-common.js index 974685e5..45243716 100644 --- a/scripts/pi-hole/js/groups-common.js +++ b/scripts/pi-hole/js/groups-common.js @@ -87,7 +87,7 @@ function enableAll() { // Enable custom input field only if applicable var ip = $("#select") ? $("#select").val() : null; if (ip !== null && ip !== "custom") { - ip = $("#ip-custom").attr("disabled", true); + $("#ip-custom").attr("disabled", true); } }