mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 17:15:48 +00:00
fix: StatisticsMenu - max of 100% for completed
Signed-off-by: Lachezar Lechev <lachezar@ambire.com>
This commit is contained in:
parent
242a4a8110
commit
2dec01923a
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