Fixed bug in uncheck

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2022-06-14 12:50:10 -07:00
parent 9072f7c6c9
commit 88dfdb7538

View file

@ -124,8 +124,7 @@
$('.snipe-table').on('uncheck.bs.table .btSelectItem', function (row, $element) {
var tableId = $(this).data('id-table');
$( "#" + tableId + "checkbox_" + $element.id).remove();
console.log("#" + tableId + "checkbox_" + $element.id);
$( "#" + tableId + "_checkbox_" + $element.id).remove();
});