Add persistent action status banner and fix stacked toast overlap
CI / build-and-push (push) Successful in 1m54s

Stack actions (start/stop/pull/update/…) now surface a dismissible
status banner on the stack detail page instead of relying on the
transient top-right toast alone. Also enable toast expand mode so
multiple notifications no longer collapse behind each other.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_016pMmFFkdfxkoYjcEcpZTa5
This commit is contained in:
menzelj
2026-08-30 20:04:10 +02:00
co-authored by Claude Sonnet 5
parent d81c48a5c0
commit 9d28e12cd7
4 changed files with 80 additions and 3 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<QueryClientProvider client={queryClient}>
<App />
<Toaster position="top-right" richColors theme="system" />
<Toaster position="top-right" richColors theme="system" expand visibleToasts={5} />
</QueryClientProvider>
</React.StrictMode>
);