diff --git a/front/packages/ui/src/details/header.tsx b/front/packages/ui/src/details/header.tsx
index 5e1654b4..b0026b31 100644
--- a/front/packages/ui/src/details/header.tsx
+++ b/front/packages/ui/src/details/header.tsx
@@ -63,6 +63,7 @@ const TitleLine = ({
isLoading,
slug,
name,
+ tagline,
date,
poster,
studio,
@@ -72,7 +73,8 @@ const TitleLine = ({
isLoading: boolean;
slug: string;
name?: string;
- date?: string;
+ tagline?: string;
+ date?: string | null;
poster?: KyooImage | null;
studio?: Studio | null;
trailerUrl?: string | null;
@@ -94,6 +96,7 @@ const TitleLine = ({
flexDirection: { xs: "column", sm: "row" },
alignItems: { xs: "center", sm: "flex-start" },
flexGrow: 1,
+ maxWidth: percent(100),
})}
>
({ xs: theme.user.heading, md: theme.heading }),
+ })}>
+ ({date}) ({ xs: theme.user.heading, md: theme.heading }),
- })}
- >
- {name}
-
- )}
- {name}
+ {date &&