Skip to content

Commit

Permalink
adminui: use created_at for recent folders
Browse files Browse the repository at this point in the history
  • Loading branch information
sentriz committed Dec 13, 2023
1 parent 4e9f0f8 commit a892595
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/ctrladmin/adminui/pages/home.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
{{ end }}
{{ range $folder := .RecentFolders }}
<div class="text-left ellipsis">{{ $folder.RightPath }}</div>
{{ if not $folder.ModifiedAt.IsZero }}
<div class="text-gray-500" title="{{ $folder.ModifiedAt }}">{{ $folder.ModifiedAt | dateHuman }}</div>
{{ if not $folder.CreatedAt.IsZero }}
<div class="text-gray-500" title="{{ $folder.CreatedAt }}">{{ $folder.CreatedAt | dateHuman }}</div>
{{ else }}
<span></span>
{{ end }}
Expand Down

0 comments on commit a892595

Please sign in to comment.