From 728c65b07c7d789b3ac1c8cd289655559decf42a Mon Sep 17 00:00:00 2001 From: Tomi Virtanen Date: Tue, 8 Oct 2024 16:34:13 +0300 Subject: [PATCH] Updated by review comments --- articles/flow/advanced/menu-configuration.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/articles/flow/advanced/menu-configuration.adoc b/articles/flow/advanced/menu-configuration.adoc index d4fb212f5a..b9e28ee756 100644 --- a/articles/flow/advanced/menu-configuration.adoc +++ b/articles/flow/advanced/menu-configuration.adoc @@ -16,7 +16,7 @@ The collected menu items are filtered by access control from the [classname]`UI` For a Flow application, any route annotated with [annotationname]`@Menu` is eligible for automatic collection. -To get the available menu routes, call the static method `MenuConfiguration.getMenuEntries()`. This returns a [classname]`List`. It would make creating a simple menu using [classname]`Anchor` look like this: +To get the available menu routes, call the static method `MenuConfiguration.getMenuEntries()`. This returns a [classname]`List` sorted primarily by order, then by path alphabetically and locale-sensitively. It would make creating a simple menu using [classname]`Anchor` look like this: [source,java] ----