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

Merged
merged 1 commit into from
Nov 18, 2024

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);

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

TypeScript already infers that the value could be undefined due to optional chaining (?.).

Copy link
Collaborator

Choose a reason for hiding this comment

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

You're bypassing that because of the typecast. @langemike

@langemike langemike merged commit a17b9b6 into jwplayer:develop Nov 18, 2024
9 checks passed
@langemike langemike deleted the fix/translated-shelf-titles branch November 18, 2024 11:59
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