diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2023-09-30 17:03:04 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-30 17:03:04 +0800 |
commit | 7d14aa062f71b5b23e26dbf344f23e6a520eb775 (patch) | |
tree | f0290816fdfb893b4570d3c42d810f9d6889c770 /templates/repo/actions/list.tmpl | |
parent | 4f169e4b47bccf314678eeb1da466cbbbef134e5 (diff) | |
download | gitea-7d14aa062f71b5b23e26dbf344f23e6a520eb775.tar.gz gitea-7d14aa062f71b5b23e26dbf344f23e6a520eb775.zip |
Fix template bug (#27362)
Fix #27361
Diffstat (limited to 'templates/repo/actions/list.tmpl')
-rw-r--r-- | templates/repo/actions/list.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/actions/list.tmpl b/templates/repo/actions/list.tmpl index b4e1113986..aa6d66fa68 100644 --- a/templates/repo/actions/list.tmpl +++ b/templates/repo/actions/list.tmpl @@ -39,7 +39,7 @@ </a> {{range .Actors}} <a class="item{{if eq .ID $.CurActor}} active{{end}}" href="{{$.Link}}?workflow={{$.CurWorkflow}}&actor={{.ID}}&status={{$.CurStatus}}"> - {{ctx.AvatarUtils.Avatar . 20}} {{.GetDisplayName ctx}} + {{ctx.AvatarUtils.Avatar . 20}} {{.GetDisplayName}} </a> {{end}} </div> |