Show PP/date in similar replays in score page

This commit is contained in:
nise.moe 2024-02-26 00:16:47 +01:00
parent 5decaf0e3c
commit 6d2b030383

View File

@ -103,6 +103,8 @@
<table>
<thead>
<th class="text-center">Played by</th>
<th class="text-center">PP</th>
<th class="text-center">Date</th>
<th class="text-center">Similarity</th>
<th class="text-center">Correlation</th>
<th class="text-center"></th>
@ -112,6 +114,12 @@
<td class="text-center">
<a [routerLink]="['/u/' + score.username]">{{ score.username }}</a>
</td>
<td class="text-center">
{{ score.pp | number: '1.2-2' }}
</td>
<td class="text-center">
{{ score.date }}
</td>
<td class="text-center">
{{ score.similarity | number: '1.2-3' }}
</td>