Skip to content

Commit

Permalink
Use digit padding for consistency
Browse files Browse the repository at this point in the history
Using padded two digit month and day for consistency across the application.

Co-authored-by: Stefan Topfstedt <[email protected]>
  • Loading branch information
jrjohnson and stopfstedt authored Mar 12, 2024
1 parent dce1ab8 commit 8045e90
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@
{{t "general.level"}}:
{{this.course.level}},
{{t "general.startDate"}}:
{{format-date this.course.startDate}},
{{format-date this.course.startDate day="2-digit" week="2-digit" year="numeric"}},
{{t "general.endDate"}}:
{{format-date this.course.endDate}}
{{format-date this.course.endDate day="2-digit" week="2-digit" year="numeric"}}
{{#if this.course.clerkshipType}}
-{{t "general.clerkship"}} ({{this.course.clerkshipType.title}})
{{/if}}
Expand Down

0 comments on commit 8045e90

Please sign in to comment.