From 0ba93f96bc1d4f9916ba113fa7ae5793d376605c Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Thu, 16 May 2024 02:51:53 +0500 Subject: [PATCH] fix(frontend/profile): if episode name is null, fallback to episode position + 1 --- frontend/app/components/UserProfile/UserProfile.jsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/app/components/UserProfile/UserProfile.jsx b/frontend/app/components/UserProfile/UserProfile.jsx index 5977857..8cfc3dd 100644 --- a/frontend/app/components/UserProfile/UserProfile.jsx +++ b/frontend/app/components/UserProfile/UserProfile.jsx @@ -221,7 +221,10 @@ export const UserProfile = (props) => { id={item.id} title={item.title_ru} poster={item.image} - description={item.last_view_episode.name} + description={ + item.last_view_episode.name || + `${item.last_view_episode.position + 1} серия` + } height={400} /> );