aboutsummaryrefslogtreecommitdiffstats
path: root/routers/repo/issue.go
diff options
context:
space:
mode:
authorMario Lubenka <mario.lubenka@googlemail.com>2019-04-20 22:50:34 +0200
committerLauris BH <lauris@nix.lv>2019-04-20 23:50:34 +0300
commitbc861347597a88ed476ec0124c4c4baf773255c3 (patch)
tree9ca8108e4d9b9c1c5f3d6b911b91ab38d9fa01b9 /routers/repo/issue.go
parentb1bb700665bdd801e9daac9c2a6013b551aeacec (diff)
downloadgitea-bc861347597a88ed476ec0124c4c4baf773255c3.tar.gz
gitea-bc861347597a88ed476ec0124c4c4baf773255c3.zip
Show "delete branch" button on closed pull requests (#6570) (#6601)
* Show button to delete a pull request branch after a pull request has been closed (#6570) Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Update routers/repo/pull.go Co-Authored-By: saitho <mario.lubenka@googlemail.com>
Diffstat (limited to 'routers/repo/issue.go')
-rw-r--r--routers/repo/issue.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/routers/repo/issue.go b/routers/repo/issue.go
index c818ac4840..7a681033af 100644
--- a/routers/repo/issue.go
+++ b/routers/repo/issue.go
@@ -674,6 +674,7 @@ func ViewIssue(ctx *context.Context) {
PrepareMergedViewPullInfo(ctx, issue)
} else {
PrepareViewPullInfo(ctx, issue)
+ ctx.Data["DisableStatusChange"] = ctx.Data["IsPullRequestBroken"] == true && issue.IsClosed
}
if ctx.Written() {
return