# HG changeset patch # User domruf # Date 2018-01-30 18:44:25 # Node ID 17c999c48ab665a7400c2eb573afde29ef11cd7c # Parent bedccdc47bd9e9e29127a1202924544a0130c990 pullrequests: fix broken delete button on overview list 428c1193ee40 changed the "Delete" button on the pull request overview page to no longer be a "submit" button. That broke the functionality: In order for the form to be submitted, the button needs to be of type submit. Change it back to "submit". diff --git a/kallithea/templates/pullrequests/pullrequest_data.html b/kallithea/templates/pullrequests/pullrequest_data.html --- a/kallithea/templates/pullrequests/pullrequest_data.html +++ b/kallithea/templates/pullrequests/pullrequest_data.html @@ -61,7 +61,7 @@ %if pr.owner_id == request.authuser.user_id: ${h.form(url('pullrequest_delete', repo_name=pr.other_repo.repo_name, pull_request_id=pr.pull_request_id))} -