Skip to content

Commit 0b8b4fb

Browse files
authored
fix: modal stacking (#5792)
* fix: modal stacking * fix: lint
1 parent d6e366b commit 0b8b4fb

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

packages/ui/src/layouts/shared/console/layout.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
<template>
22
<div
33
class="flex min-h-0 flex-1 flex-col gap-4"
4-
:class="isFullscreen ? `fixed inset-0 z-50 bg-surface-1 p-6 py-8 ${isApp ? 'pt-12' : ''}` : ''"
4+
:class="
5+
isFullscreen ? `fixed inset-0 z-[15] bg-surface-1 p-6 py-8 ${isApp ? 'pt-12' : ''}` : ''
6+
"
57
>
68
<CollapsibleAdmonition
7-
v-if="ctx.crashAnalysis?.value"
9+
v-if="ctx.crashAnalysis?.value && !isFullscreen"
810
type="critical"
911
:header="crashHeader"
1012
:items="crashItems"

0 commit comments

Comments
 (0)