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:
Dominik
2023-12-12 19:26:06 +01:00
committed by GitHub
parent 10ca38da47
commit 57b21f174d

View File

@@ -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);