From e1d556f4aadbe049a89a7239e25495ff75491e61 Mon Sep 17 00:00:00 2001 From: Xaviju Date: Wed, 4 Mar 2026 10:33:29 +0100 Subject: [PATCH] :bug: Sort tokens by name (#8488) --- common/src/app/common/path_names.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/app/common/path_names.cljc b/common/src/app/common/path_names.cljc index 74774c0044..00038cdf6c 100644 --- a/common/src/app/common/path_names.cljc +++ b/common/src/app/common/path_names.cljc @@ -188,7 +188,7 @@ Some naming conventions: [segments separator] (let [sorted (sort-by-children segments separator) grouped (group-by-first-segment sorted separator)] - grouped)) + (into (sorted-map) grouped))) (defn- build-tree-node "Builds a single tree node with lazy children."