Fix playtime

Playtime wasn't being showing up correctly till I removed one of the 60's
This commit is contained in:
Sensokaku
2024-02-28 05:36:39 +08:00
committed by GitHub
parent c992701387
commit b83773dfa6

View File

@@ -145,7 +145,7 @@
<div class="time">
<span>Play Time</span>
<span>{(d.user.totalPlayTime / 60 / 60).toFixed(1)} hr</span>
<span>{(d.user.totalPlayTime / 60).toFixed(1)} hr</span>
</div>
<div class="first-play">
@@ -390,4 +390,4 @@ $gap: 20px
&:before
content: "+"
color: $c-good
</style>
</style>