Fix broken multi-delete of adlists (#2751)

This commit is contained in:
yubiuser
2023-10-15 12:32:22 +02:00
committed by GitHub
+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);