mirror of
https://github.com/pi-hole/web.git
synced 2026-04-24 10:50:23 +01:00
Fix lists JSON payload
Co-authored-by: RD WebDesign <github@rdwebdesign.com.br> Signed-off-by: Dominik <DL6ER@users.noreply.github.com>
This commit is contained in:
@@ -397,7 +397,7 @@ function initTable() {
|
||||
var ids = [];
|
||||
$("tr.selected").each(function () {
|
||||
// ... add the row identified by "data-id".
|
||||
ids.push($(this).attr("data-id"));
|
||||
ids.push({ item: $(this).attr("data-id") });
|
||||
});
|
||||
// Delete all selected rows at once
|
||||
delGroupItems("list", ids, table);
|
||||
|
||||
Reference in New Issue
Block a user