diff options
author | a1012112796 <1012112796@qq.com> | 2021-07-18 05:21:04 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-17 23:21:04 +0200 |
commit | ec357833bcfc90860331f956a811ecbf45df47aa (patch) | |
tree | a4a466fe6af0eee866796422c97e07b3a9041074 /templates/user | |
parent | 4b512abf5b00a2f51ef295ba63671f557e1d4c13 (diff) | |
download | gitea-ec357833bcfc90860331f956a811ecbf45df47aa.tar.gz gitea-ec357833bcfc90860331f956a811ecbf45df47aa.zip |
show tag name on dashboard items list (#16466)
fix #16458
Signed-off-by: a1012112796 <1012112796@qq.com>
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 6ed75ee149..745fb1ec63 100644 --- a/templates/user/dashboard/feeds.tmpl +++ b/templates/user/dashboard/feeds.tmpl @@ -33,7 +33,7 @@ {{$.i18n.Tr "action.transfer_repo" .GetContent .GetRepoLink .ShortRepoPath | Str2html}} {{else if eq .GetOpType 9}} {{ $tagLink := .GetTag | EscapePound | Escape}} - {{$.i18n.Tr "action.push_tag" .GetRepoLink $tagLink .ShortRepoPath | Str2html}} + {{$.i18n.Tr "action.push_tag" .GetRepoLink $tagLink .ShortRepoPath .GetTag | Str2html}} {{else if eq .GetOpType 10}} {{ $index := index .GetIssueInfos 0}} {{$.i18n.Tr "action.comment_issue" .GetRepoLink $index .ShortRepoPath | Str2html}} |