Skip to content

Commit

Permalink
Add real time as well as relative time to last seen. (#72)
Browse files Browse the repository at this point in the history
* Add real time as well as relative time to last seen.

* Review
  • Loading branch information
VasilisThePikachu authored Nov 26, 2024
1 parent 60e1c09 commit a771327
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ReplayBrowser/Pages/Profile.razor
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ else
<p><small>Calculated by adding up the total time for each round played by the player.</small></p>
<p><b>Total rounds played:</b> @_playerData.TotalRoundsPlayed</p>
<p><b>Total antag rounds played:</b> @_playerData.TotalAntagRoundsPlayed</p>
<p><b>Last seen:</b> @_playerData.LastSeen.Humanize()</p>
<p><b>Last seen:</b> @_playerData.LastSeen.Date (@_playerData.LastSeen.Humanize())</p>

<h2>Characters</h2>
<table class="table">
Expand Down Expand Up @@ -155,7 +155,7 @@ else
Total estimated playtime: {_playerData.TotalEstimatedPlaytime.Humanize()}
Total rounds played: {_playerData.TotalRoundsPlayed}
Total antag rounds played: {_playerData.TotalAntagRoundsPlayed}
Last seen: {_playerData.LastSeen.Humanize()}
Last seen: {_playerData.LastSeen.Date}
";

protected override async Task OnInitializedAsync()
Expand Down

0 comments on commit a771327

Please sign in to comment.