Skip to content

Commit

Permalink
Ok this is the REAL fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Simyon264 committed May 18, 2024
1 parent 7ce03c5 commit f5ea959
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ReplayBrowser/Pages/Leaderboard.razor
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,15 @@ else
{
<tr>
<td>@player.Value.Position</td>
<td><a href="" onclick="window.location.href = '/player/@player.Value.Player.PlayerGuid'">@player.Value.Player.Username</a></td>
<td><a href="/player/@player.Value.Player.PlayerGuid" onclick="window.location.href = '/player/@player.Value.Player.PlayerGuid'">@player.Value.Player.Username</a></td>
<td>@player.Value.Count</td>
</tr>
}
else
{
<tr style="--bs-table-bg: #622c2c;">
<td>@player.Value.Position</td>
<td><a href="" onclick="window.location.href = '/player/@player.Value.Player.PlayerGuid'">@player.Value.Player.Username</a></td>
<td><a href="/player/@player.Value.Player.PlayerGuid" onclick="window.location.href = '/player/@player.Value.Player.PlayerGuid'">@player.Value.Player.Username</a></td>
<td>@player.Value.Count</td>
</tr>
}
Expand Down

0 comments on commit f5ea959

Please sign in to comment.