From 7e3e69db3fe55ab50858ccfdbde266b39177bfab Mon Sep 17 00:00:00 2001 From: Roland Tannous Date: Thu, 28 May 2026 11:41:39 +0400 Subject: [PATCH] Studio: raise ingestion toast stack above the settings sheet MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The toast stack and the chat settings sheet were both z-50, so an open side panel (rendered later in the DOM) covered the indexing toast. Bump the stack to z-[9999] — comfortably above the sheet's z-50 — so the ingestion toast stays visible like the Sonner reranker toast does. --- .../src/features/rag/components/ingestion-toast-stack.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/studio/frontend/src/features/rag/components/ingestion-toast-stack.tsx b/studio/frontend/src/features/rag/components/ingestion-toast-stack.tsx index 570199fd42..5499eb2411 100644 --- a/studio/frontend/src/features/rag/components/ingestion-toast-stack.tsx +++ b/studio/frontend/src/features/rag/components/ingestion-toast-stack.tsx @@ -55,7 +55,7 @@ export function IngestionToastStack() { if (visible.length === 0) return null; return ( -
+
{visible.map(([jobId, event]) => { const isTerminal =