Don't show year for updated dates in current year of project table

This commit is contained in:
Alex Cabal 2025-01-03 13:43:59 -06:00
parent ea7cf4733c
commit 9b959e3eda
2 changed files with 8 additions and 1 deletions

View file

@ -25,4 +25,7 @@ enum DateTimeFormat: string{
/** Like Jan 5, 2024 */
case ShortDate = 'M j, Y';
/** Like Jan 5 */
case ShortDateWithoutYear = 'M j';
}