Reading List Detail Overhaul + More Bugfixes and Polish (#3687)

Co-authored-by: Yongun Seong <yseong.p@gmail.com>
This commit is contained in:
Joe Milazzo 2025-03-29 19:47:53 -05:00 committed by GitHub
parent b2ee651fb8
commit dad212bfb9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
71 changed files with 5056 additions and 729 deletions

View file

@ -255,6 +255,7 @@ public static class QueryableExtensions
ScrobbleEventSortField.Type => query.OrderByDescending(s => s.ScrobbleEventType),
ScrobbleEventSortField.Series => query.OrderByDescending(s => s.Series.NormalizedName),
ScrobbleEventSortField.IsProcessed => query.OrderByDescending(s => s.IsProcessed),
ScrobbleEventSortField.ScrobbleEventFilter => query.OrderByDescending(s => s.ScrobbleEventType),
_ => query
};
}
@ -267,6 +268,7 @@ public static class QueryableExtensions
ScrobbleEventSortField.Type => query.OrderBy(s => s.ScrobbleEventType),
ScrobbleEventSortField.Series => query.OrderBy(s => s.Series.NormalizedName),
ScrobbleEventSortField.IsProcessed => query.OrderBy(s => s.IsProcessed),
ScrobbleEventSortField.ScrobbleEventFilter => query.OrderBy(s => s.ScrobbleEventType),
_ => query
};
}