Skip to content

Commit

Permalink
fix(editor): Disable auto scroll and list size check when clicking on…
Browse files Browse the repository at this point in the history
… executions (#7983)

## Summary
Auto scrolling to the active execution is unnecessary as well as
checking if more items can be loaded.

#### How to test the change:
1. Open a workflow with a long list of executions (preferably with more
executions that fits in the list when first rendered and need to use
infinite scroll to load more items)
2. Go to executions tabs
3. Scroll to the bottom
4. Click on an item that is visible only if the list is scrolled down.

The list should not be scrolled to the active item automatically
  • Loading branch information
cstuncsik authored and ivov committed Dec 15, 2023
1 parent bf6f8e5 commit 99d1771
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,6 @@ export default defineComponent({
this.$router.go(-1);
}
},
'workflowsStore.activeWorkflowExecution'() {
this.checkListSize();
this.scrollToActiveCard();
},
},
mounted() {
// On larger screens, we need to load more then first page of executions
Expand Down

0 comments on commit 99d1771

Please sign in to comment.