File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Resources/Private/Fusion/Component Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ prototype(Breadlesscode.Listable:List) < prototype(Neos.Fusion:Component) {
99 @context.currentPage = ${ request.arguments.currentPage || 1 }
1010
1111 renderer = Neos.Fusion:Join {
12- @context.collection = Neos.Fusion:RawArray {
12+ @context.collection = Neos.Fusion:DataStructure {
1313 items = Breadlesscode.Listable:Collection {
1414 collection = ${ props.collection }
1515 currentPage = ${ currentPage }
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ prototype(Breadlesscode.Listable:Pagination) < prototype(Neos.Fusion:Component)
2222 isCurrent = ${ String.toInteger(props.currentPage) == String.toInteger(item.page) }
2323 uri = Neos.Neos:NodeUri {
2424 node = ${ documentNode }
25- additionalParams = Neos.Fusion:RawArray {
25+ additionalParams = Neos.Fusion:DataStructure {
2626 currentPage = ${ item.page }
2727 }
2828 @if.noSperator = ${ item.page }
Original file line number Diff line number Diff line change 1- prototype(Breadlesscode.Listable:PaginationConfig) < prototype(Neos.Fusion:RawArray ) {
1+ prototype(Breadlesscode.Listable:PaginationConfig) < prototype(Neos.Fusion:DataStructure ) {
22 showSeperators = ${ Configuration.setting('Breadlesscode.Listable.pagination.showSeperators') }
33 showNextAndPrevious = ${ Configuration.setting('Breadlesscode.Listable.pagination.showNextAndPrevious') }
44 alwaysShowNextAndPrevious = ${ Configuration.setting('Breadlesscode.Listable.pagination.alwaysShowNextAndPrevious') }
55 showFirstAndLast = ${ Configuration.setting('Breadlesscode.Listable.pagination.showFirstAndLast') }
66 alwaysShowFirstAndLast = ${ Configuration.setting('Breadlesscode.Listable.pagination.alwaysShowFirstAndLast') }
77
8- labels = Neos.Fusion:RawArray {
8+ labels = Neos.Fusion:DataStructure {
99 seperator = ${ Configuration.setting('Breadlesscode.Listable.pagination.labels.seperator') }
1010 previous = ${ Configuration.setting('Breadlesscode.Listable.pagination.labels.previous') }
1111 next = ${ Configuration.setting('Breadlesscode.Listable.pagination.labels.next') }
You can’t perform that action at this time.
0 commit comments