Restore state of checkbox before apply lots changes

This commit is contained in:
RubenPX 2022-04-29 13:33:44 +02:00
parent e238fb287a
commit f8f4e10f9f
1 changed files with 5 additions and 0 deletions

View File

@ -335,6 +335,11 @@ async function processSelectedDevices() {
}
}
table.rows().remove(rowsToRemove);
// Restore state of checkbox
const selectAllBTN = document.getElementById("SelectAllBTN");
selectAllBTN.checked = false;
selectAllBTN.indeterminate = false;
}
}