mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 18:33:33 +00:00
fix casing on artist albums title
This commit is contained in:
parent
6f37e13611
commit
9a59ce3613
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue