Browse Source

Use ISO date format instead of hard-coded English date format for date range in repo activity page (#21396)

January 2, 2006 -> 2006-01-02

Signed-off-by: Yarden Shoham <hrsi88@gmail.com>
tags/v1.18.0-rc0
Yarden Shoham 1 year ago
parent
commit
2d4c6321c3
No account linked to committer's email address
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      routers/web/repo/activity.go

+ 2
- 2
routers/web/repo/activity.go View File

@@ -47,8 +47,8 @@ func Activity(ctx *context.Context) {
ctx.Data["Period"] = "weekly"
timeFrom = timeUntil.Add(-time.Hour * 168)
}
ctx.Data["DateFrom"] = timeFrom.Format("January 2, 2006")
ctx.Data["DateUntil"] = timeUntil.Format("January 2, 2006")
ctx.Data["DateFrom"] = timeFrom.Format("2006-01-02")
ctx.Data["DateUntil"] = timeUntil.Format("2006-01-02")
ctx.Data["PeriodText"] = ctx.Tr("repo.activity.period." + ctx.Data["Period"].(string))

var err error

Loading…
Cancel
Save