Skip to content

Commit

Permalink
fix bug on dates
Browse files Browse the repository at this point in the history
  • Loading branch information
lochidev committed Jan 29, 2024
1 parent c5162af commit 6717db1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MauiApp1/Pages/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@
private static string GetTheRealFormat(string format)
{
format = format.Replace("%Y", "yyyy");
format = format.Replace("%m", "M");
format = format.Replace("%m", "MM");
format = format.Replace("%b", "MMM");
format = format.Replace("%B", "MMMM");
format = format.Replace("%h", "MMM");
Expand Down

0 comments on commit 6717db1

Please sign in to comment.