mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 03:42:16 +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;
|
const index = foundIndex + props.offset;
|
||||||
|
|
||||||
return index === -1 ? props.items.length - 1 : index;
|
return foundIndex === -1 ? props.items.length - 1 : index;
|
||||||
});
|
});
|
||||||
|
|
||||||
const visibleItems = computed(() => {
|
const visibleItems = computed(() => {
|
||||||
|
|||||||
Reference in New Issue
Block a user