diff --git a/Plugin/unraid/pages/setup.php b/Plugin/unraid/pages/setup.php index 4b689fa..ab68ef3 100644 --- a/Plugin/unraid/pages/setup.php +++ b/Plugin/unraid/pages/setup.php @@ -303,7 +303,6 @@ hr.vv-hr { border: none; border-top: 1px solid #1e1e1e; margin: 22px 0; } - Skip →
@@ -315,7 +314,8 @@ hr.vv-hr { border: none; border-top: 1px solid #1e1e1e; margin: 22px 0; }
- Continue → + Skip →
@@ -433,14 +433,10 @@ function vvGoNext(e) { window.location.href = _vvRedirect || '?tab=scheduler'; } -// Label the exit after the place it actually leads, so the link is not a surprise. Derived from -// the redirect the save returned, not from the role guessed again on this side. -function vvLabelExit() { - const el = document.getElementById('vv-exit-link'); - if (!el) return; - const target = /tab=partnership/.test(_vvRedirect || '') ? 'Partnership' : 'Scheduler'; - el.textContent = `Go to ${target} →`; -} +// The exit link is a plain faint "Skip →" and stays that way. It used to relabel itself "Go to +// Scheduler/Partnership", which read as the intended way out — but the wizard now ends in the +// completion card, and that card carries the real destinations. Two competing exits, one of them +// renaming itself, made leaving early and finishing look like the same action. // ── Step 2 ──────────────────────────────────────────────────────────────────── function vvShowStep2(redirect, apiKey) { @@ -686,7 +682,6 @@ function vvLoadChecklist() { const el = document.getElementById('vv-checklist'); _vvLastChecklist = d; if (!d.ok || !d.items) { el.innerHTML = 'Unable to load checklist'; return; } - vvLabelExit(); vvRenderOnboardPanel(d); vvRenderDone(d); el.innerHTML = d.items.map(item => {