Merge branch 'develop' into fix/vlc4

This commit is contained in:
Alex Kim
2025-07-13 19:39:37 +10:00
4 changed files with 18 additions and 53 deletions

View File

@@ -367,15 +367,7 @@ const Page = () => {
className='mr-1'
id={libraryId}
queryKey='sortBy'
queryFn={async () =>
sortOptions
.filter(
(s) =>
library?.CollectionType !== "movies" ||
s.key !== SortByOption.DateLastContentAdded,
)
.map((s) => s.key)
}
queryFn={async () => sortOptions.map((s) => s.key)}
set={setSortBy}
values={sortBy}
title={t("library.filters.sort_by")}