diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2022-02-12 03:08:17 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-11 14:08:17 -0500 |
commit | 12d2d5aedc6bb4a53c48e88bb5a96aa0887618a4 (patch) | |
tree | 9aa36ceb564d6d471a880e7013e2d25616730936 /templates/user | |
parent | e0688995efdeaf5da2997779e369cc27a5ce6a5e (diff) | |
download | gitea-12d2d5aedc6bb4a53c48e88bb5a96aa0887618a4.tar.gz gitea-12d2d5aedc6bb4a53c48e88bb5a96aa0887618a4.zip |
Fix release typo (#18728)
Diffstat (limited to 'templates/user')
-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 16f2edd4f6..09786499b8 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}} |