From 25cef3fbf4ebbdb9f9ee3f70303f8892c5f8b90e Mon Sep 17 00:00:00 2001 From: DL6ER Date: Sun, 15 Oct 2023 12:11:17 +0200 Subject: [PATCH] Fix broken multi-delete of adlists Signed-off-by: DL6ER --- scripts/pi-hole/js/groups-adlists.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pi-hole/js/groups-adlists.js b/scripts/pi-hole/js/groups-adlists.js index c05a84ad..ab1448f2 100644 --- a/scripts/pi-hole/js/groups-adlists.js +++ b/scripts/pi-hole/js/groups-adlists.js @@ -359,7 +359,7 @@ function initTable() { var ids = []; $("tr.selected").each(function () { // ... add the row identified by "data-id". - ids.push($(this).attr("data-id"), 10); + ids.push($(this).attr("data-id")); }); // Delete all selected rows at once delItems(ids);