mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 21:37:32 -08:00
fix: Fix RecycleScroller end index (no-changelog) (#5272)
This commit is contained in:
parent
cedf2e012c
commit
439c9c6e1f
|
@ -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(() => {
|
||||
|
|
Loading…
Reference in a new issue