Fix broken multi-delete of adlists

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER
2023-10-15 12:11:17 +02:00
parent 21af10a9d9
commit 25cef3fbf4
+1 -1
View File
@@ -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);