mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 17:15:48 +00:00
Merge pull request #906 from Stremio/fix/player-statistics-show-max-100-percent
fix: StatisticsMenu - max of 100% for completed
This commit is contained in:
commit
1ae009c0bc
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ const StatisticsMenu = ({ className, peers, speed, completed, infoHash }) => {
|
|||
Completed
|
||||
</div>
|
||||
<div className={styles['value']}>
|
||||
{ completed } %
|
||||
{ Math.min(completed, 100) } %
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue