mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
Fix studio error in the movie header
This commit is contained in:
parent
91aa673dcb
commit
e32c09f48f
@ -190,21 +190,24 @@ const TitleLine = ({
|
||||
}),
|
||||
])}
|
||||
>
|
||||
<P
|
||||
{...css({
|
||||
color: (theme: Theme) => theme.user.paragraph,
|
||||
display: "flex",
|
||||
})}
|
||||
>
|
||||
{t("show.studio")}:{" "}
|
||||
{isLoading ? (
|
||||
<Skeleton {...css({ width: rem(5) })} />
|
||||
) : (
|
||||
<A href={`/studio/${studio!.slug}`} {...css({ color: (theme) => theme.user.link })}>
|
||||
{studio!.name}
|
||||
</A>
|
||||
)}
|
||||
</P>
|
||||
{isLoading ||
|
||||
(studio && (
|
||||
<P
|
||||
{...css({
|
||||
color: (theme: Theme) => theme.user.paragraph,
|
||||
display: "flex",
|
||||
})}
|
||||
>
|
||||
{t("show.studio")}:{" "}
|
||||
{isLoading ? (
|
||||
<Skeleton {...css({ width: rem(5) })} />
|
||||
) : (
|
||||
<A href={`/studio/${studio.slug}`} {...css({ color: (theme) => theme.user.link })}>
|
||||
{studio.name}
|
||||
</A>
|
||||
)}
|
||||
</P>
|
||||
))}
|
||||
</View>
|
||||
</Container>
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user