Studio: raise ingestion toast stack above the settings sheet
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.
This commit is contained in:
parent
3117cb5f99
commit
7e3e69db3f
1 changed files with 1 additions and 1 deletions
|
|
@ -55,7 +55,7 @@ export function IngestionToastStack() {
|
|||
if (visible.length === 0) return null;
|
||||
|
||||
return (
|
||||
<div className="pointer-events-none fixed right-4 top-4 z-50 flex w-72 flex-col gap-2">
|
||||
<div className="pointer-events-none fixed right-4 top-4 z-[9999] flex w-72 flex-col gap-2">
|
||||
<AnimatePresence initial={false}>
|
||||
{visible.map(([jobId, event]) => {
|
||||
const isTerminal =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue