diff --git a/Plugin/unraid/pages/scheduler.php b/Plugin/unraid/pages/scheduler.php
index 27a6513..dcd8c1f 100644
--- a/Plugin/unraid/pages/scheduler.php
+++ b/Plugin/unraid/pages/scheduler.php
@@ -175,7 +175,7 @@ $runningScripts = array_unique($runningScripts);
-
+
@@ -1630,12 +1630,16 @@ function vvSaveChild(el) {
}
-function vvToggleAdvanced(btn) {
+// Named Steps, not Advanced. The page already carries a global "Advanced" mode button that
+// unlocks script source and raw conf editing — an unrelated control with a much sharper edge.
+// Two buttons sharing a name on one page meant "go to Scheduler and click Advanced" could land
+// someone in raw conf editing when all they wanted was to see what an orchestrator runs.
+function vvToggleSteps(btn) {
const card = btn.closest('.vv-sched-card');
const children = card.querySelector('.vv-children');
const visible = children.style.display !== 'none';
children.style.display = visible ? 'none' : 'block';
- btn.textContent = visible ? 'Advanced ▸' : 'Advanced ▾';
+ btn.textContent = visible ? 'Steps ▸' : 'Steps ▾';
}
function vvToggleTools(btn) {