[Enh] Updates Add.razor with page sort order

Displays page list according to the sort order preferences applied to pages.
This commit is contained in:
Jon Welfringer 2024-12-18 14:13:29 -08:00 committed by GitHub
parent af821dcd9a
commit bd2849b556
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -252,6 +252,7 @@
try
{
_pages = await PageService.GetPagesAsync(PageState.Site.SiteId);
_pages = _pages.OrderBy(item => item.ParentId).ThenBy(item => item.Order).ToList();
if (PageState.QueryString.ContainsKey("id"))
{