feat: add franchise page

This commit is contained in:
Kentai Radiquum 2024-07-31 14:53:46 +05:00
parent 804ce02a07
commit fda308eced
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
5 changed files with 124 additions and 20 deletions

View file

@ -48,15 +48,17 @@ export const ReleaseLink169 = (props: any) => {
{props.status ? (
<Chip name={props.status.name} />
) : (
<Chip
name={
props.status_id == 1
? "Завершено"
: props.status_id == 2
? "Онгоинг"
: "Анонс"
}
/>
props.status_id != 0 && (
<Chip
name={
props.status_id == 1
? "Завершено"
: props.status_id == 2
? "Онгоинг"
: props.status_id == 3 && "Анонс"
}
/>
)
)}
<Chip
name={props.episodes_released && props.episodes_released}