diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2022-02-12 09:15:34 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-11 20:15:34 -0500 |
commit | f9a0ae1dd4d171a5dfe50a5f38892142ab43b95e (patch) | |
tree | 0283609796b27518c9bdc26813c92c6d5d2ca520 | |
parent | fb26b01688fb44205062fdc34c8daba7655c7446 (diff) | |
download | gitea-f9a0ae1dd4d171a5dfe50a5f38892142ab43b95e.tar.gz gitea-f9a0ae1dd4d171a5dfe50a5f38892142ab43b95e.zip |
Fix release typo (#18728) (#18731)
-rw-r--r-- | templates/user/dashboard/feeds.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/user/dashboard/feeds.tmpl b/templates/user/dashboard/feeds.tmpl index c21ac337ab..925ab40404 100644 --- a/templates/user/dashboard/feeds.tmpl +++ b/templates/user/dashboard/feeds.tmpl @@ -73,7 +73,7 @@ {{$.i18n.Tr "action.comment_pull" ((printf "%s/pulls/%s" .GetRepoLink $index) |Escape) $index (.ShortRepoPath|Escape) | Str2html}} {{else if eq .GetOpType 24}} {{ $linkText := .Content | RenderEmoji }} - {{$.i18n.Tr "action.publish_release" (.GetRepoLink|Escape) ((printf "%s/release/tag/%s" .GetRepoLink .GetTag)|Escape) (.ShortRepoPath|Escape) $linkText | Str2html}} + {{$.i18n.Tr "action.publish_release" (.GetRepoLink|Escape) ((printf "%s/releases/tag/%s" .GetRepoLink .GetTag)|Escape) (.ShortRepoPath|Escape) $linkText | Str2html}} {{else if eq .GetOpType 25}} {{ $index := index .GetIssueInfos 0}} {{ $reviewer := index .GetIssueInfos 1}} |