summaryrefslogtreecommitdiffstats
path: root/routers/web/repo/issue_timetrack.go
diff options
context:
space:
mode:
authorRené Schaar <rene@schaar.priv.at>2022-02-15 17:50:10 +0100
committerGitHub <noreply@github.com>2022-02-16 00:50:10 +0800
commit609c91665e5e4d6da50af0b2168d6cb46f9d6273 (patch)
tree974e777fbd7262162c4f3b237f3688178962e89c /routers/web/repo/issue_timetrack.go
parent2be49dee71af997ed944c177a090aeb3e6d606e8 (diff)
downloadgitea-609c91665e5e4d6da50af0b2168d6cb46f9d6273.tar.gz
gitea-609c91665e5e4d6da50af0b2168d6cb46f9d6273.zip
Fix display time of milestones (#18753)
* Fix display time of milestones * Move the SecToTime function From the models/issue_stopwatch.go file to the modules/util package * Rename the sec_to_time file * Updated formatting * Include copyright notice in sec_to_time.go * Apply PR review suggestions - Update copyright notice dates to 2022 - Change `1 day 3h 5min 7s` to `1d 3h 5m 7s` * Rename hrs var and combine conditions * Update unit tests to match new time pattern Changed `1min` to `1m` Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Diffstat (limited to 'routers/web/repo/issue_timetrack.go')
-rw-r--r--routers/web/repo/issue_timetrack.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/routers/web/repo/issue_timetrack.go b/routers/web/repo/issue_timetrack.go
index 3770cd7b4e..ec6bb6142d 100644
--- a/routers/web/repo/issue_timetrack.go
+++ b/routers/web/repo/issue_timetrack.go
@@ -10,6 +10,7 @@ import (
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/context"
+ "code.gitea.io/gitea/modules/util"
"code.gitea.io/gitea/modules/web"
"code.gitea.io/gitea/services/forms"
)
@@ -81,6 +82,6 @@ func DeleteTime(c *context.Context) {
return
}
- c.Flash.Success(c.Tr("repo.issues.del_time_history", models.SecToTime(t.Time)))
+ c.Flash.Success(c.Tr("repo.issues.del_time_history", util.SecToTime(t.Time)))
c.Redirect(issue.HTMLURL())
}