diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2024-12-12 11:28:23 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-12 19:28:23 +0000 |
commit | 6370d2fb93a5ee897b82969ca30a9feb33667714 (patch) | |
tree | 5f2414f66869e5680feb1f12dc71e71e5a1ec544 /templates/repo | |
parent | c9487a755b742fd2257f57cec1ead3f4c71174d7 (diff) | |
download | gitea-6370d2fb93a5ee897b82969ca30a9feb33667714.tar.gz gitea-6370d2fb93a5ee897b82969ca30a9feb33667714.zip |
Detect whether action view branch was deleted (#32764)
Fix #32761
![图片](https://github.com/user-attachments/assets/a5a7eef8-0fea-4242-b199-1b0b73d9bbdb)
Diffstat (limited to 'templates/repo')
-rw-r--r-- | templates/repo/actions/runs_list.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/repo/actions/runs_list.tmpl b/templates/repo/actions/runs_list.tmpl index 5537e9e617..fa1adb3e3b 100644 --- a/templates/repo/actions/runs_list.tmpl +++ b/templates/repo/actions/runs_list.tmpl @@ -27,10 +27,10 @@ </div> </div> <div class="flex-item-trailing"> - {{if .RefLink}} - <a class="ui label run-list-ref gt-ellipsis" href="{{.RefLink}}">{{.PrettyRef}}</a> + {{if .IsRefDeleted}} + <span class="ui label run-list-ref gt-ellipsis tw-line-through" data-tooltip-content="{{.PrettyRef}}">{{.PrettyRef}}</span> {{else}} - <span class="ui label run-list-ref gt-ellipsis">{{.PrettyRef}}</span> + <a class="ui label run-list-ref gt-ellipsis" href="{{.RefLink}}" data-tooltip-content="{{.PrettyRef}}">{{.PrettyRef}}</a> {{end}} <div class="run-list-item-right"> <div class="run-list-meta">{{svg "octicon-calendar" 16}}{{DateUtils.TimeSince .Updated}}</div> |