Skip to content

Commit

Permalink
Update PlayerPage.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahStolk committed Mar 29, 2024
1 parent 2a02e5a commit c4a2bf2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ protected override async Task OnParametersSetAsync()
return activityEntry == null ? [] :
[
new($"<span style='text-align: right;'>{activityEntry.DateTime.ToString(StringFormats.DateFormat)}</span>"),
new($"<span style='color: {ds.Color}; text-align: right;'>{activityEntry.DeathsIncrement.ToString("0.0")}</span>"),
new($"<span style='color: {ds.Color}; text-align: right;'>{activityEntry.DeathsIncrement:0.0}</span>"),
];
}));

Expand All @@ -217,7 +217,7 @@ protected override async Task OnParametersSetAsync()
return activityEntry == null ? [] :
[
new($"<span style='text-align: right;'>{activityEntry.DateTime.ToString(StringFormats.DateFormat)}</span>"),
new($"<span style='color: {ds.Color}; text-align: right;'>{activityEntry.TimeIncrement.ToString("0.0000")}</span>"),
new($"<span style='color: {ds.Color}; text-align: right;'>{activityEntry.TimeIncrement.ToString(StringFormats.TimeFormat)}</span>"),
];
}));
}
Expand Down

0 comments on commit c4a2bf2

Please sign in to comment.