Update samy.ps1

This commit is contained in:
2025-12-20 18:33:19 -05:00
parent 7f18644cfd
commit 06ae8f4c36

View File

@@ -899,8 +899,6 @@ function Get-UIHtml {
$onboardLeft = Publish-Checkboxes -Page 'onboard' -Column 'left' $onboardLeft = Publish-Checkboxes -Page 'onboard' -Column 'left'
$onboardRight = Publish-Checkboxes -Page 'onboard' -Column 'right' $onboardRight = Publish-Checkboxes -Page 'onboard' -Column 'right'
$offboard = Publish-Checkboxes -Page 'offboard' -Column '' $offboard = Publish-Checkboxes -Page 'offboard' -Column ''
$tweaks = Publish-Checkboxes -Page 'tweaks' -Column ''
$apps = Publish-Checkboxes -Page 'SVSApps' -Column ''
# #
# 2) Build the JS tasks array once (this is the only dynamic JS piece) # 2) Build the JS tasks array once (this is the only dynamic JS piece)
@@ -963,8 +961,8 @@ function Get-UIHtml {
$html = $html.Replace('{{onboardLeftColumn}}', $onboardLeft) $html = $html.Replace('{{onboardLeftColumn}}', $onboardLeft)
$html = $html.Replace('{{onboardRightColumn}}', $onboardRight) $html = $html.Replace('{{onboardRightColumn}}', $onboardRight)
$html = $html.Replace('{{offboardCheckboxes}}', $offboard) $html = $html.Replace('{{offboardCheckboxes}}', $offboard)
$html = $html.Replace('{{tweaksCheckboxes}}', $tweaks) $html = $html.Replace('{{tweaksCheckboxes}}', '')
$html = $html.Replace('{{appsCheckboxes}}', $apps) $html = $html.Replace('{{appsCheckboxes}}', '')
$html = $html.Replace('{{tasksJsAll}}', $tasksJsAll) $html = $html.Replace('{{tasksJsAll}}', $tasksJsAll)
$html = $html.Replace('{{defaultPage}}', $Page) $html = $html.Replace('{{defaultPage}}', $Page)