mirror of
https://github.com/Radiquum/AniX.git
synced 2025-09-05 22:15:36 +05:00
anix/fix: incorrect format of watched time statistic
This commit is contained in:
parent
be0731cfba
commit
052e649012
3 changed files with 37 additions and 25 deletions
|
@ -112,7 +112,7 @@ export const ProfileStats = (props: {
|
|||
<p>
|
||||
Время просмотра:{" "}
|
||||
<span className="font-bold">
|
||||
~{minutesToTime(props.watched_time, "daysHours")}
|
||||
~{minutesToTime(props.watched_time)}
|
||||
</span>
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
@ -59,7 +59,7 @@ export const ReleaseInfoInfo = (props: {
|
|||
{"/"}
|
||||
{props.episodes.total ? props.episodes.total + " эп. " : "? эп. "}
|
||||
{props.duration != 0 &&
|
||||
`по ${minutesToTime(props.duration, "daysHours")}`}
|
||||
`по ${minutesToTime(props.duration)}`}
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
<TableRow>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue