Skip to content

Commit

Permalink
fixed flow query collection limit
Browse files Browse the repository at this point in the history
  • Loading branch information
breadlesscode authored Nov 28, 2019
1 parent cea2928 commit 939d8bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Resources/Private/Fusion/Component/Collection.fusion
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ prototype(Breadlesscode.Listable:Collection) < prototype(Neos.Fusion:Component)
slice = ${ value.slice(offset, limit) }
[email protected] = ${ props.paginate }

limits = ${ value.limit(0, limit) }
limits = ${ value.slice(0, limit) }
[email protected] = ${ !props.paginate && limit >= 1 }

execute = ${ value.get() }
Expand Down

0 comments on commit 939d8bc

Please sign in to comment.