Skip to content

Commit

Permalink
Fix role time hours indicator, line break
Browse files Browse the repository at this point in the history
  • Loading branch information
DrSmugleaf committed Feb 25, 2025
1 parent f35c664 commit 645c896
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion SS14.Admin/Pages/Players/Info.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@
<summary>@timeText</summary>
@foreach (var role in requirement.Roles)
{
<span class="mx-3">@role (@GetTime([role]) h)</span>
var roleTime = $"{GetTime([role]).TotalHours:F1}";
<span class="mx-3">@role (@roleTime h)</span>
<br/>
}
</details>
}
Expand Down

0 comments on commit 645c896

Please sign in to comment.