From 06ae8f4c368c1b7fcff45301ce8646bd08185c9d Mon Sep 17 00:00:00 2001 From: Stephan Yelle Date: Sat, 20 Dec 2025 18:33:19 -0500 Subject: [PATCH] Update samy.ps1 --- samy.ps1 | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/samy.ps1 b/samy.ps1 index 416a4da..7673334 100644 --- a/samy.ps1 +++ b/samy.ps1 @@ -899,8 +899,6 @@ function Get-UIHtml { $onboardLeft = Publish-Checkboxes -Page 'onboard' -Column 'left' $onboardRight = Publish-Checkboxes -Page 'onboard' -Column 'right' $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) @@ -963,8 +961,8 @@ function Get-UIHtml { $html = $html.Replace('{{onboardLeftColumn}}', $onboardLeft) $html = $html.Replace('{{onboardRightColumn}}', $onboardRight) $html = $html.Replace('{{offboardCheckboxes}}', $offboard) - $html = $html.Replace('{{tweaksCheckboxes}}', $tweaks) - $html = $html.Replace('{{appsCheckboxes}}', $apps) + $html = $html.Replace('{{tweaksCheckboxes}}', '') + $html = $html.Replace('{{appsCheckboxes}}', '') $html = $html.Replace('{{tasksJsAll}}', $tasksJsAll) $html = $html.Replace('{{defaultPage}}', $Page)