mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
fix(editor): Position executions filter popover so that it doesn't hide executions (#16049)
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user