Update TGBeta.ps1
This commit is contained in:
15
TGBeta.ps1
15
TGBeta.ps1
@@ -652,16 +652,13 @@ function GetHtmlContent {
|
||||
const n8nPasswordContainer = document.getElementById('n8nPasswordContainer');
|
||||
const dattoRMMContainer = document.getElementById('DattoRMMContainer');
|
||||
|
||||
// Set the checked state of all checkboxes to match the "Select All" checkbox
|
||||
checkboxes.forEach(checkbox => {
|
||||
checkbox.checked = selectAllCheckbox.checked;
|
||||
});
|
||||
|
||||
|
||||
// checkboxes.forEach(checkbox => {
|
||||
// if (checkbox !== selectedCheckbox) {
|
||||
// checkbox.checked = selectedCheckbox.checked;
|
||||
// }
|
||||
// });
|
||||
checkboxes.forEach(checkbox => {
|
||||
if (checkbox !== selectedCheckbox) {
|
||||
checkbox.checked = selectedCheckbox.checked;
|
||||
}
|
||||
});
|
||||
|
||||
if (dattoRMMCheckbox.checked) {
|
||||
optionsContainer.style.display = 'block';
|
||||
|
||||
Reference in New Issue
Block a user