Skip to content

Commit

Permalink
Display the hour using a 24-hour clock from 00 to 23 (WalletWasabi#13324
Browse files Browse the repository at this point in the history
)
  • Loading branch information
yahiheb authored Aug 16, 2024
1 parent 8c6318d commit 1b8d3c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WalletWasabi.Fluent/Extensions/DateTimeExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public static string ToUserFacingString(this DateTime value, bool withTime = tru

public static string ToUserFacingFriendlyString(this DateTime value)
{
var time = value.ToString("hh:mm");
var time = value.ToString("HH:mm");

if (value.Date == DateTime.Today)
{
Expand Down

0 comments on commit 1b8d3c6

Please sign in to comment.