fix(editor): Fix workflow execution list scrolling after filter change (#10226)

This commit is contained in:
Csaba Tuncsik
2024-07-31 09:09:54 +02:00
committed by GitHub
parent 3d23f2f333
commit 7e643589c6
2 changed files with 47 additions and 0 deletions

View File

@@ -186,6 +186,9 @@ export default defineComponent({
this.$emit('refresh');
},
onFilterChanged(filter: ExecutionFilterType) {
this.autoScrollDeps.activeExecutionSet = false;
this.autoScrollDeps.scroll = true;
this.mountedItems = [];
this.$emit('filterUpdated', filter);
},
reloadExecutions(): void {