From 85ba643bcc8957c73e57cb1f85ba1f95e0f8bb24 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Tue, 19 Dec 2023 22:52:49 +0100 Subject: [PATCH] Fix episodes runtime wrap --- front/packages/ui/src/details/episode.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/front/packages/ui/src/details/episode.tsx b/front/packages/ui/src/details/episode.tsx index 88244724..123b8fdf 100644 --- a/front/packages/ui/src/details/episode.tsx +++ b/front/packages/ui/src/details/episode.tsx @@ -298,7 +298,11 @@ export const EpisodeLine = ({ )} {isLoading || - (runtime && {isLoading || {displayRuntime(runtime)}})} + (runtime && ( + + {isLoading || {displayRuntime(runtime)}} + + ))} {isLoading ||

{overview}

}