fix navigation order in SiteStore

This commit is contained in:
Simon Vieille 2021-08-17 09:13:21 +02:00
parent 756c0479b4
commit f17dc928db

View file

@ -25,6 +25,7 @@ class SiteStore
public function getNavigations(): array
{
return $this->navigationRepositoryQuery->create()
->orderBy('.sortOrder')
->find()
;
}