# HG changeset patch # User domruf # Date 1517334265 -3600 # 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 -r bedccdc47bd9 -r 17c999c48ab6 kallithea/templates/pullrequests/pullrequest_data.html --- a/kallithea/templates/pullrequests/pullrequest_data.html Wed Feb 21 01:27:43 2018 +0100 +++ b/kallithea/templates/pullrequests/pullrequest_data.html Tue Jan 30 18:44:25 2018 +0100 @@ -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))} -