mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 20:01:24 +01:00
Fix #29152 Backport #27581 (cherry picked from commit dc48eb070b2e4143739b7ab22bb9e172af90106d)
This commit is contained in:
parent
40318cf9c3
commit
40c602df9b
1 changed files with 2 additions and 1 deletions
|
@ -83,6 +83,7 @@
|
||||||
{{if .GetOpType.InActions "commit_repo" "mirror_sync_push"}}
|
{{if .GetOpType.InActions "commit_repo" "mirror_sync_push"}}
|
||||||
{{$push := ActionContent2Commits .}}
|
{{$push := ActionContent2Commits .}}
|
||||||
{{$repoLink := (.GetRepoLink ctx)}}
|
{{$repoLink := (.GetRepoLink ctx)}}
|
||||||
|
{{$repo := .Repo}}
|
||||||
<div class="gt-df gt-fc gt-gap-2">
|
<div class="gt-df gt-fc gt-gap-2">
|
||||||
{{range $push.Commits}}
|
{{range $push.Commits}}
|
||||||
{{$commitLink := printf "%s/commit/%s" $repoLink .Sha1}}
|
{{$commitLink := printf "%s/commit/%s" $repoLink .Sha1}}
|
||||||
|
@ -90,7 +91,7 @@
|
||||||
<img class="ui avatar" src="{{$push.AvatarLink $.Context .AuthorEmail}}" title="{{.AuthorName}}" width="16" height="16">
|
<img class="ui avatar" src="{{$push.AvatarLink $.Context .AuthorEmail}}" title="{{.AuthorName}}" width="16" height="16">
|
||||||
<a class="ui sha label" href="{{$commitLink}}">{{ShortSha .Sha1}}</a>
|
<a class="ui sha label" href="{{$commitLink}}">{{ShortSha .Sha1}}</a>
|
||||||
<span class="text truncate">
|
<span class="text truncate">
|
||||||
{{RenderCommitMessage $.Context .Message $.ComposeMetas}}
|
{{RenderCommitMessage $.Context .Message $repo.ComposeMetas}}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
{{end}}
|
{{end}}
|
||||||
|
|
Loading…
Reference in a new issue