Fixed issue with custom fields not determined as custom (#16065)

This commit is contained in:
Bjarke Berg
2024-04-16 13:39:14 +02:00
committed by GitHub
parent cd6f2b4b6d
commit 43bf2a26d1

View File

@@ -102,7 +102,7 @@ internal abstract class ContentListViewServiceBase<TContent, TContentType, TCont
}
var orderByCustomField = listViewProperties
.Any(p => p.Alias == orderBy && p.IsSystem);
.Any(p => p.Alias == orderBy && p.IsSystem is false);
var ordering = Ordering.By(
orderBy,