Skip to content

Commit 939d8bc

Browse files
fixed flow query collection limit
1 parent cea2928 commit 939d8bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Resources/Private/Fusion/Component/Collection.fusion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ prototype(Breadlesscode.Listable:Collection) < prototype(Neos.Fusion:Component)
3131
slice = ${ value.slice(offset, limit) }
3232
slice.@if.isPaginated = ${ props.paginate }
3333

34-
limits = ${ value.limit(0, limit) }
34+
limits = ${ value.slice(0, limit) }
3535
limits.@if.isNotPaginated = ${ !props.paginate && limit >= 1 }
3636

3737
execute = ${ value.get() }

0 commit comments

Comments
 (0)