diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2024-12-12 20:28:23 +0100 |
---|---|---|
committer | Earl Warren <contact@earl-warren.org> | 2024-12-15 09:45:10 +0100 |
commit | 2b5c69c451a684b20119e2521dc23734c7869241 (patch) | |
tree | 325388e2913aea14366476a0243731991e081f04 /web_src | |
parent | Implement update branch API (#32433) (diff) | |
download | forgejo-2b5c69c451a684b20119e2521dc23734c7869241.tar.xz forgejo-2b5c69c451a684b20119e2521dc23734c7869241.zip |
Detect whether action view branch was deleted (#32764)
Fix #32761
![图片](https://github.com/user-attachments/assets/a5a7eef8-0fea-4242-b199-1b0b73d9bbdb)
(cherry picked from commit 6370d2fb93a5ee897b82969ca30a9feb33667714)
Conflicts:
routers/web/repo/actions/actions.go
routers/web/repo/actions/view.go
trivial context conflicts
Diffstat (limited to 'web_src')
-rw-r--r-- | web_src/js/components/RepoActionView.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/web_src/js/components/RepoActionView.vue b/web_src/js/components/RepoActionView.vue index 941440c6f3..13ac9427f3 100644 --- a/web_src/js/components/RepoActionView.vue +++ b/web_src/js/components/RepoActionView.vue @@ -444,7 +444,8 @@ export function initRepositoryActionView() { {{ run.commit.localePushedBy }} <a class="muted" :href="run.commit.pusher.link">{{ run.commit.pusher.displayName }}</a> <span class="ui label tw-max-w-full" v-if="run.commit.shortSHA"> - <a class="gt-ellipsis" :href="run.commit.branch.link">{{ run.commit.branch.name }}</a> + <span v-if="run.commit.branch.isDeleted" class="gt-ellipsis tw-line-through" :data-tooltip-content="run.commit.branch.name">{{ run.commit.branch.name }}</span> + <a v-else class="gt-ellipsis" :href="run.commit.branch.link" :data-tooltip-content="run.commit.branch.name">{{ run.commit.branch.name }}</a> </span> </div> <div class="action-summary"> |