attempt to fix the select all checkbox

This commit is contained in:
2025-01-04 02:07:42 -05:00
parent ade504a85d
commit 7ac57d1977

View File

@@ -304,7 +304,7 @@ function Install-SVSMSP {
Perform-ToolkitInstallation
}
Install-SVSMSP -InstallToolkit
#Install-SVSMSP -InstallToolkit
# ----------------------------------------------------------------------------------
@@ -346,7 +346,7 @@ function Get-N8nWebhookData {
return $data
#return $data
}
catch {
Write-Host "Error making the GET request:" -ForegroundColor Red
@@ -582,7 +582,7 @@ function GetHtmlContent {
<script>
function toggleOnboardCheckboxes(selectedCheckbox) {
const checkboxes = document.querySelectorAll('#onboardTab input[type="checkbox"]');
const checkboxes = document.querySelectorAll('#onboardTab input[type="checkbox"]:not(#selectAllOnboardCheckbox)');
const dattoRMMCheckbox = document.getElementById('installDattoRMMCheckbox');
const optionsContainer = document.getElementById('dattoRMMOptionsContainer');
const n8nPasswordContainer = document.getElementById('n8nPasswordContainer');