Update TGBeta.ps1

This commit is contained in:
2025-01-06 23:31:25 -05:00
parent b0e32fc2c6
commit a60e5bfd1a

View File

@@ -652,6 +652,11 @@ function GetHtmlContent {
const n8nPasswordContainer = document.getElementById('n8nPasswordContainer'); const n8nPasswordContainer = document.getElementById('n8nPasswordContainer');
const dattoRMMContainer = document.getElementById('DattoRMMContainer'); 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 => { // checkboxes.forEach(checkbox => {
// if (checkbox !== selectedCheckbox) { // if (checkbox !== selectedCheckbox) {
// checkbox.checked = selectedCheckbox.checked; // checkbox.checked = selectedCheckbox.checked;