Skip to content

Commit a771327

Browse files
Add real time as well as relative time to last seen. (#72)
* Add real time as well as relative time to last seen. * Review
1 parent 60e1c09 commit a771327

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ReplayBrowser/Pages/Profile.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ else
4848
<p><small>Calculated by adding up the total time for each round played by the player.</small></p>
4949
<p><b>Total rounds played:</b> @_playerData.TotalRoundsPlayed</p>
5050
<p><b>Total antag rounds played:</b> @_playerData.TotalAntagRoundsPlayed</p>
51-
<p><b>Last seen:</b> @_playerData.LastSeen.Humanize()</p>
51+
<p><b>Last seen:</b> @_playerData.LastSeen.Date (@_playerData.LastSeen.Humanize())</p>
5252

5353
<h2>Characters</h2>
5454
<table class="table">
@@ -155,7 +155,7 @@ else
155155
Total estimated playtime: {_playerData.TotalEstimatedPlaytime.Humanize()}
156156
Total rounds played: {_playerData.TotalRoundsPlayed}
157157
Total antag rounds played: {_playerData.TotalAntagRoundsPlayed}
158-
Last seen: {_playerData.LastSeen.Humanize()}
158+
Last seen: {_playerData.LastSeen.Date}
159159
";
160160

161161
protected override async Task OnInitializedAsync()

0 commit comments

Comments
 (0)