fix(editor): Position executions filter popover so that it doesn't hide executions (#16049)

This commit is contained in:
Jaakko Husso
2025-06-06 13:08:59 +03:00
committed by GitHub
parent bdcaaff744
commit 576ff4d3b8
2 changed files with 10 additions and 7 deletions

View File

@@ -211,7 +211,7 @@ const goToUpgrade = () => {
>
{{ i18n.baseText('executionsList.autoRefresh') }}
</el-checkbox>
<ExecutionsFilter popover-placement="left-start" @filter-changed="onFilterChanged" />
<ExecutionsFilter popover-placement="right-start" @filter-changed="onFilterChanged" />
</div>
<div
ref="executionListRef"

View File

@@ -1,15 +1,18 @@
.executions-list-move,
.executions-list-enter-active,
.executions-list-leave-active {
.executions-list-enter-active {
transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.executions-list-enter-from,
.executions-list-leave-to {
.executions-list-leave-active {
transition: none;
position: absolute;
}
.executions-list-enter-from {
opacity: 0;
transform: translateX(-100px);
}
.executions-list-leave-active {
position: absolute;
.executions-list-leave-to {
opacity: 0;
}