mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
fix(frontend/releases): fix null episode name if API returning null in episode.name
add fallback to use episode position
This commit is contained in:
parent
99f7b4cdbb
commit
9bdd217fe0
1 changed files with 1 additions and 1 deletions
|
@ -155,7 +155,7 @@ export const ReleasePlayer = (props) => {
|
|||
style={{ marginLeft: "8px" }}
|
||||
>
|
||||
{item.is_watched && <i className="small">check</i>}
|
||||
{item.name}
|
||||
{item.name || `${item.position + 1} серия`}
|
||||
</button>
|
||||
);
|
||||
})}
|
||||
|
|
Loading…
Add table
Reference in a new issue