mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix: Fix RecycleScroller end index (no-changelog) (#5272)
This commit is contained in:
@@ -87,7 +87,7 @@ export default defineComponent({
|
||||
});
|
||||
const index = foundIndex + props.offset;
|
||||
|
||||
return index === -1 ? props.items.length - 1 : index;
|
||||
return foundIndex === -1 ? props.items.length - 1 : index;
|
||||
});
|
||||
|
||||
const visibleItems = computed(() => {
|
||||
|
||||
Reference in New Issue
Block a user