mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
fix(frontend/profile): if episode name is null, fallback to episode position + 1
This commit is contained in:
parent
8897aca6c9
commit
0ba93f96bc
1 changed files with 4 additions and 1 deletions
|
@ -221,7 +221,10 @@ export const UserProfile = (props) => {
|
||||||
id={item.id}
|
id={item.id}
|
||||||
title={item.title_ru}
|
title={item.title_ru}
|
||||||
poster={item.image}
|
poster={item.image}
|
||||||
description={item.last_view_episode.name}
|
description={
|
||||||
|
item.last_view_episode.name ||
|
||||||
|
`${item.last_view_episode.position + 1} серия`
|
||||||
|
}
|
||||||
height={400}
|
height={400}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue