Update secure-gateway-setup.tsx

This commit is contained in:
MacRimi
2026-03-14 21:45:00 +01:00
parent 09513c0beb
commit c37466e948

View File

@@ -1151,15 +1151,15 @@ export function SecureGatewaySetup() {
</DialogTitle> </DialogTitle>
</DialogHeader> </DialogHeader>
{/* Progress indicator - filter out "advanced" step if using Proxmox Only */} {/* Progress indicator - filter out "options" step if using Proxmox Only */}
<div className="flex items-center gap-1 mb-4"> <div className="flex items-center gap-1 mb-4">
{wizardSteps {wizardSteps
.filter((step) => !(config.access_mode === "host_only" && step.id === "advanced")) .filter((step) => !(config.access_mode === "host_only" && step.id === "options"))
.map((step, idx) => { .map((step, idx) => {
// Recalculate the actual step index accounting for skipped steps // Recalculate the actual step index accounting for skipped steps
const actualIdx = wizardSteps.findIndex((s) => s.id === step.id) const actualIdx = wizardSteps.findIndex((s) => s.id === step.id)
const adjustedCurrentStep = config.access_mode === "host_only" const adjustedCurrentStep = config.access_mode === "host_only"
? (currentStep > wizardSteps.findIndex((s) => s.id === "advanced") ? currentStep - 1 : currentStep) ? (currentStep > wizardSteps.findIndex((s) => s.id === "options") ? currentStep - 1 : currentStep)
: currentStep : currentStep
return ( return (
<div <div
@@ -1181,9 +1181,9 @@ export function SecureGatewaySetup() {
<Button <Button
variant="outline" variant="outline"
onClick={() => { onClick={() => {
// Skip "advanced" step when going back if using "Proxmox Only" // Skip "options" step when going back if using "Proxmox Only"
let prevStep = currentStep - 1 let prevStep = currentStep - 1
if (config.access_mode === "host_only" && wizardSteps[prevStep]?.id === "advanced") { if (config.access_mode === "host_only" && wizardSteps[prevStep]?.id === "options") {
prevStep = prevStep - 1 prevStep = prevStep - 1
} }
setCurrentStep(Math.max(0, prevStep)) setCurrentStep(Math.max(0, prevStep))
@@ -1196,9 +1196,9 @@ export function SecureGatewaySetup() {
{currentStep < wizardSteps.length - 1 ? ( {currentStep < wizardSteps.length - 1 ? (
<Button <Button
onClick={() => { onClick={() => {
// Skip "advanced" step when using "Proxmox Only" // Skip "options" step when using "Proxmox Only"
let nextStep = currentStep + 1 let nextStep = currentStep + 1
if (config.access_mode === "host_only" && wizardSteps[nextStep]?.id === "advanced") { if (config.access_mode === "host_only" && wizardSteps[nextStep]?.id === "options") {
nextStep = nextStep + 1 nextStep = nextStep + 1
} }
setCurrentStep(nextStep) setCurrentStep(nextStep)