From cea2928dea2f77c69be560bbef25fc8d275a04b9 Mon Sep 17 00:00:00 2001 From: Marvin Kuhn Date: Fri, 15 Nov 2019 14:40:31 +0100 Subject: [PATCH] fixed comment in list fusion component --- Resources/Private/Fusion/Component/List.fusion | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Resources/Private/Fusion/Component/List.fusion b/Resources/Private/Fusion/Component/List.fusion index 3468a8f..54bb193 100644 --- a/Resources/Private/Fusion/Component/List.fusion +++ b/Resources/Private/Fusion/Component/List.fusion @@ -1,6 +1,7 @@ prototype(Breadlesscode.Listable:List) < prototype(Neos.Fusion:Component) { collection = ${ [] } - itemsPerPage = 10 # deprecated please use limit instead + // itemsPerPage is deprecated, please use limit instead + itemsPerPage = 10 limit = ${ this.itemsPerPage } itemRenderer = 'Breadlesscode.Listable:ListItem' itemName = ${ 'item' }