mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
Fix episodes runtime wrap
This commit is contained in:
parent
022cd239d5
commit
85ba643bcc
@ -298,7 +298,11 @@ export const EpisodeLine = ({
|
||||
)}
|
||||
</Skeleton>
|
||||
{isLoading ||
|
||||
(runtime && <Skeleton>{isLoading || <SubP>{displayRuntime(runtime)}</SubP>}</Skeleton>)}
|
||||
(runtime && (
|
||||
<Skeleton>
|
||||
{isLoading || <SubP {...css({ flexShrink: 0 })}>{displayRuntime(runtime)}</SubP>}
|
||||
</Skeleton>
|
||||
))}
|
||||
</View>
|
||||
<View {...css({ flexDirection: "row" })}>
|
||||
<Skeleton>{isLoading || <P numberOfLines={3}>{overview}</P>}</Skeleton>
|
||||
|
Loading…
x
Reference in New Issue
Block a user