mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-31 04:04:21 -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
|
{isLoading ||
|
||||||
{...css({
|
(studio && (
|
||||||
color: (theme: Theme) => theme.user.paragraph,
|
<P
|
||||||
display: "flex",
|
{...css({
|
||||||
})}
|
color: (theme: Theme) => theme.user.paragraph,
|
||||||
>
|
display: "flex",
|
||||||
{t("show.studio")}:{" "}
|
})}
|
||||||
{isLoading ? (
|
>
|
||||||
<Skeleton {...css({ width: rem(5) })} />
|
{t("show.studio")}:{" "}
|
||||||
) : (
|
{isLoading ? (
|
||||||
<A href={`/studio/${studio!.slug}`} {...css({ color: (theme) => theme.user.link })}>
|
<Skeleton {...css({ width: rem(5) })} />
|
||||||
{studio!.name}
|
) : (
|
||||||
</A>
|
<A href={`/studio/${studio.slug}`} {...css({ color: (theme) => theme.user.link })}>
|
||||||
)}
|
{studio.name}
|
||||||
</P>
|
</A>
|
||||||
|
)}
|
||||||
|
</P>
|
||||||
|
))}
|
||||||
</View>
|
</View>
|
||||||
</Container>
|
</Container>
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user