Fix manual flow dialog showing above select item drawer (#21361)

This commit is contained in:
daedalus
2024-02-07 16:11:32 -05:00
committed by GitHub
parent 56b809abe4
commit 98c58af3be
3 changed files with 10 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
---
'@directus/app': patch
---
Fixed manual flow dialog showing above select item drawer

View File

@@ -105,6 +105,10 @@ function nudge() {
z-index: 600;
}
.container.center:has(.manual-flow-card) {
z-index: 500;
}
.container.center.nudge > :slotted(*:not(:first-child)) {
animation: nudge 200ms;
}

View File

@@ -181,7 +181,7 @@ const runManualFlow = async (flowId: string) => {
</div>
<v-dialog :model-value="!!confirmRunFlow" @esc="resetConfirm">
<v-card>
<v-card class="manual-flow-card">
<template v-if="confirmDetails">
<v-card-title>{{ confirmDetails.description ?? t('run_flow_confirm') }}</v-card-title>