mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-09 20:29:36 +02:00
fix casing on artist albums title
This commit is contained in:
@@ -129,7 +129,7 @@ const AlbumListRoute = () => {
|
|||||||
|
|
||||||
const artist = searchParams.get('artistName');
|
const artist = searchParams.get('artistName');
|
||||||
const title = artist
|
const title = artist
|
||||||
? t('page.albumList.artistAlbums', { artist })
|
? t('page.albumList.artistAlbums', { artist, postProcess: 'sentenceCase' })
|
||||||
: genreId
|
: genreId
|
||||||
? t('page.albumList.genreAlbums', { genre: titleCase(genreTitle) })
|
? t('page.albumList.genreAlbums', { genre: titleCase(genreTitle) })
|
||||||
: undefined;
|
: undefined;
|
||||||
|
|||||||
Reference in New Issue
Block a user