Restore state of checkbox before apply lots changes
This commit is contained in:
parent
e238fb287a
commit
f8f4e10f9f
|
@ -335,6 +335,11 @@ async function processSelectedDevices() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
table.rows().remove(rowsToRemove);
|
table.rows().remove(rowsToRemove);
|
||||||
|
|
||||||
|
// Restore state of checkbox
|
||||||
|
const selectAllBTN = document.getElementById("SelectAllBTN");
|
||||||
|
selectAllBTN.checked = false;
|
||||||
|
selectAllBTN.indeterminate = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in New Issue