Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix / Translatable shelf titles for hub pages #643

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

langemike
Copy link
Collaborator

This fixes an issue where translated playlist titles didn't show up as translated shelf titles on the hub page.

@@ -75,7 +75,7 @@ const ShelfList = ({ rows }: Props) => {
const posterAspect = parseAspectRatio(playlist.cardImageAspectRatio || playlist.shelfImageAspectRatio);
const visibleTilesDelta = parseTilesDelta(posterAspect);

const translatedKey = custom?.[`title-${language}`];
const translatedKey = custom?.[`title-${language}`] || (playlist?.[`title-${language}`] as string);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
const translatedKey = custom?.[`title-${language}`] || (playlist?.[`title-${language}`] as string);
const translatedKey = custom?.[`title-${language}`] || (playlist?.[`title-${language}`] as string | undefined);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants