From 084548fcd7d913788828b178e3d2dc6dfa8a1004 Mon Sep 17 00:00:00 2001 From: Leopere Date: Tue, 3 Mar 2026 16:56:48 -0500 Subject: [PATCH] Fix dashboard stack state UI after Destroy - Inverted condition was showing 'being provisioned' when stack not deployed - Actions block was gated on StackDeployed so no Start button after destroy - Start button now always shown when not running - Destroy button only shown when stack is deployed - 'Being provisioned' message replaced with accurate 'stopped' message Made-with: Cursor --- docker/ss-atlas/templates/pages/dashboard.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/ss-atlas/templates/pages/dashboard.html b/docker/ss-atlas/templates/pages/dashboard.html index c58a2e0..f96cecb 100644 --- a/docker/ss-atlas/templates/pages/dashboard.html +++ b/docker/ss-atlas/templates/pages/dashboard.html @@ -173,11 +173,10 @@ {{if .StackRunning}}

Your dedicated environment is accessible at:

{{.User}}.{{.Domain}} - {{else if not .StackDeployed}} -

Your stack is being provisioned. Refresh this page in a moment.

+ {{else if and .StackDeployed (not .StackRunning)}} +

Your stack is stopped. Start it to access your environment.

{{end}} - {{if .StackDeployed}}
{{if .StackRunning}} @@ -195,13 +194,14 @@ {{end}} + {{if .StackDeployed}}
+ {{end}}
- {{end}}

Manage