From ec357833bcfc90860331f956a811ecbf45df47aa Mon Sep 17 00:00:00 2001
From: a1012112796 <1012112796@qq.com>
Date: Sun, 18 Jul 2021 05:21:04 +0800
Subject: [PATCH] show tag name on dashboard items list (#16466)
fix #16458
Signed-off-by: a1012112796 <1012112796@qq.com>
---
options/locale/locale_en-US.ini | 2 +-
templates/user/dashboard/feeds.tmpl | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini
index 0ead1dfd6..2479bc5bb 100644
--- a/options/locale/locale_en-US.ini
+++ b/options/locale/locale_en-US.ini
@@ -2710,7 +2710,7 @@ comment_issue = `commented on issue %s#%[2]s`
comment_pull = `commented on pull request %s#%[2]s`
merge_pull_request = `merged pull request %s#%[2]s`
transfer_repo = transferred repository %s
to %s
-push_tag = pushed tag %[2]s to %[3]s
+push_tag = pushed tag %[4]s to %[3]s
delete_tag = deleted tag %[2]s from %[3]s
delete_branch = deleted branch %[2]s from %[3]s
compare_branch = Compare
diff --git a/templates/user/dashboard/feeds.tmpl b/templates/user/dashboard/feeds.tmpl
index 6ed75ee14..745fb1ec6 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}}