Fix tag order on details pages (#6143)

* Fix related tag order
* Fix unit tests
This commit is contained in:
WithoutPants
2025-10-16 13:15:09 +11:00
committed by GitHub
parent 0c5285c949
commit ce4b86daf5
9 changed files with 12 additions and 11 deletions

View File

@@ -133,7 +133,7 @@ var (
},
fkColumn: tagIDColumn,
foreignTable: tagTable,
orderBy: "COALESCE(tags.sort_name, tags.name) ASC",
orderBy: tagTableSortSQL,
},
}
)