diff --git a/XeroNetStandardApp/Views/FilesSync/Index.cshtml b/XeroNetStandardApp/Views/FilesSync/Index.cshtml
index a667db0..4a6dc0a 100644
--- a/XeroNetStandardApp/Views/FilesSync/Index.cshtml
+++ b/XeroNetStandardApp/Views/FilesSync/Index.cshtml
@@ -20,8 +20,8 @@
@item.Name |
@item.MimeType |
@(item.Size / 1024) KB |
- @item.CreatedDateUtc.ToString("d/MM/yy") |
- @item.UpdatedDateUtc.ToString("d/MM/yy") |
+ @DateTime.Parse(item.CreatedDateUtc).ToString("dd/MM/yyyy") |
+ @DateTime.Parse(item.UpdatedDateUtc).ToString("dd/MM/yyyy") |
@item.Id?.ToString().Substring(0,8) |
@item.FolderId?.ToString().Substring(0,8) |
|