Allow shows to be sorted by names

This commit is contained in:
Zoe Roux 2025-06-21 16:03:23 +02:00
parent 713f3ca96f
commit 2f0e077fa1
No known key found for this signature in database

View File

@ -81,6 +81,11 @@ export const showFilters: FilterDef = {
export const showSort = Sort( export const showSort = Sort(
{ {
slug: shows.slug, slug: shows.slug,
name: {
sql: sql.raw(`t.${showTranslations.name.name}`),
isNullable: false,
accessor: (x) => x.name,
},
rating: shows.rating, rating: shows.rating,
airDate: shows.startAir, airDate: shows.startAir,
startAir: shows.startAir, startAir: shows.startAir,