diff --git a/Configuration/Settings.yaml b/Configuration/Settings.yaml
index 2a1478f..2b49f4f 100644
--- a/Configuration/Settings.yaml
+++ b/Configuration/Settings.yaml
@@ -12,7 +12,7 @@ Neos:
type: tree
label: Tree
icon: tree
- # # Example using ElasticSearch
+ ## Example using ElasticSearch
# news:
# label: News
# icon: newspaper
@@ -20,7 +20,17 @@ Neos:
# query: 'Search.query(node).nodeType("Your.Namespace:News").sortDesc("date").from((page - 1) * 20).limit(20).execute().toArray()'
# newReferenceNodePath: '/sites/site'
# newNodeType: 'Your.Namespace:News'
- # # Example using FlowQuery
+ # disablePagination: false
+ ## Example without pagination
+ # newsWithoutPagination:
+ # label: News
+ # icon: newspaper
+ # type: flat
+ # query: 'q(node).find("[instanceof Your.Namespace:News]").sort("date", "ASC").get()'
+ # newReferenceNodePath: '/sites/site'
+ # newNodeType: 'Your.Namespace:News'
+ # disablePagination: true
+ ## Example using FlowQuery
# tags:
# label: Tags
# icon: tag
@@ -28,6 +38,7 @@ Neos:
# query: 'q(node).find("[instanceof Your.Namespace:Tag]").sort("title", "ASC").slice((page - 1) * 20, page * 20).get()'
# newReferenceNodePath: 'q(node).find("[instanceof Your.Namespace:NewsList]").first().get(0).path'
# newNodeType: 'Your.Namespace:Tag'
+ # disablePagination: false
Flow:
security:
diff --git a/Resources/Private/FlatNav/src/FlatNav.js b/Resources/Private/FlatNav/src/FlatNav.js
index 5adee13..32323f0 100644
--- a/Resources/Private/FlatNav/src/FlatNav.js
+++ b/Resources/Private/FlatNav/src/FlatNav.js
@@ -228,7 +228,14 @@ class FlatNav extends Component {
}}
role="button"
>
- {$get('label', item)}
+
+
+
+
+ {$get('label', item)}
+
);
}
@@ -246,10 +253,10 @@ class FlatNav extends Component {
-
+
{this.renderNodes()}
- {this.props.moreNodesAvailable && (