removed 0's and fixed ranking and removed event winner badge

This commit is contained in:
Christian
2021-02-27 00:04:36 +01:00
parent 0c2103cc0c
commit 474f104ecd
3 changed files with 19 additions and 8 deletions
+1 -1
View File
@@ -120,7 +120,7 @@ class Maps extends React.Component {
</NavLink>
<strong> Position: {e.position}</strong><br />
<strong> Mappoints: {e.mapPoint}</strong><br />
<strong> Time: 0{e.mapTime}</strong><br />
<strong> Time: {e.mapTime}</strong><br />
{Object.keys(e.badgesUrls).map(badges => (
<div key={e.badgesUrls[badges]}>
<img src={e.badgesUrls[badges]} alt="" /> <br />
@@ -128,7 +128,7 @@ class Player extends React.Component {
<strong> Map: {e.mapname}</strong><br />
<strong> Stage: {e.mapstage}</strong><br />
<strong> Position: {e.position}</strong><br />
<strong> Time: 0{e.mapTime}</strong><br />
<strong> Time: {e.mapTime}</strong><br />
<strong> MapPoints: {e.mapPoint}</strong><br />
</NavLink>
</div>