From 4080e30b6fef35a2733355d6118eff3077a2e616 Mon Sep 17 00:00:00 2001 From: Leigh Pointer Date: Thu, 5 May 2022 13:07:09 +0200 Subject: [PATCH] Updated the CreatedOn date format Updated the format to a more readable format of dd-MMM-yyyy --- Oqtane.Client/Modules/Admin/UserProfile/Index.razor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Oqtane.Client/Modules/Admin/UserProfile/Index.razor b/Oqtane.Client/Modules/Admin/UserProfile/Index.razor index a2aeb314..98912db2 100644 --- a/Oqtane.Client/Modules/Admin/UserProfile/Index.razor +++ b/Oqtane.Client/Modules/Admin/UserProfile/Index.razor @@ -160,7 +160,7 @@ else @context.FromDisplayName @context.Subject - @context.CreatedOn + @string.Format("{0:dd-MMM-yyyy HH:mm:ss}", @context.CreatedOn) @@ -193,7 +193,7 @@ else @context.ToDisplayName @context.Subject - @context.CreatedOn + @string.Format("{0:dd-MMM-yyyy HH:mm:ss}", @context.CreatedOn)