Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
abbreviate month name in stickyrow menu
Browse files Browse the repository at this point in the history
  • Loading branch information
nvllz committed Jan 21, 2024
1 parent 2fbbf60 commit 1de8879
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ data class TimePeriod(
val year = year
return if (year != null && dateNowUTC().year != year) {
// not this year
"${month.name}, $year"
"${month.name.substring(0, 3)}, $year"
} else {
// this year
month.name
Expand Down

0 comments on commit 1de8879

Please sign in to comment.