diff options
author | Gary Wang <wzc782970009@gmail.com> | 2020-12-11 07:06:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-10 18:06:45 -0500 |
commit | c11cf4bb39794c21a6ce931b599b536096bfd168 (patch) | |
tree | e2dd11d85472afa023d581f8b60f314a0139d71d /modules | |
parent | d0043ffb7f5c5c739cc05959098b0cac86256bce (diff) | |
download | gitea-c11cf4bb39794c21a6ce931b599b536096bfd168.tar.gz gitea-c11cf4bb39794c21a6ce931b599b536096bfd168.zip |
chore: use octicon-mirror for feeds display (#13928)
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'modules')
-rw-r--r-- | modules/templates/helper.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/templates/helper.go b/modules/templates/helper.go index 15cbeb8151..97d3029839 100644 --- a/modules/templates/helper.go +++ b/modules/templates/helper.go @@ -787,7 +787,7 @@ func ActionIcon(opType models.ActionType) string { case models.ActionReopenIssue, models.ActionReopenPullRequest: return "issue-reopened" case models.ActionMirrorSyncPush, models.ActionMirrorSyncCreate, models.ActionMirrorSyncDelete: - return "repo-clone" + return "mirror" case models.ActionApprovePullRequest: return "check" case models.ActionRejectPullRequest: |