From f17dc928dbbc52a65d541384a3494faf63ccac75 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Tue, 17 Aug 2021 09:13:21 +0200 Subject: [PATCH] fix navigation order in SiteStore --- core/Site/SiteStore.php | 1 + 1 file changed, 1 insertion(+) diff --git a/core/Site/SiteStore.php b/core/Site/SiteStore.php index 1147a68..94229b5 100644 --- a/core/Site/SiteStore.php +++ b/core/Site/SiteStore.php @@ -25,6 +25,7 @@ class SiteStore public function getNavigations(): array { return $this->navigationRepositoryQuery->create() + ->orderBy('.sortOrder') ->find() ; }