diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2022-05-09 03:13:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-08 20:13:27 +0100 |
commit | 290cc884f2eaffd971d756d166f55771e8cdbed7 (patch) | |
tree | dd5eb906bdef02e20dcecfc798db67ef2eea12cc /templates | |
parent | 4ca1d7547a2c32cc65ca23d1a7698d1a8c921d65 (diff) | |
download | gitea-290cc884f2eaffd971d756d166f55771e8cdbed7.tar.gz gitea-290cc884f2eaffd971d756d166f55771e8cdbed7.zip |
Restore reviewed-on message (#19657)
Regression from #18177
Diffstat (limited to 'templates')
-rw-r--r-- | templates/repo/issue/view_content/pull.tmpl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/repo/issue/view_content/pull.tmpl b/templates/repo/issue/view_content/pull.tmpl index 07b2e89d24..195da6bf87 100644 --- a/templates/repo/issue/view_content/pull.tmpl +++ b/templates/repo/issue/view_content/pull.tmpl @@ -377,6 +377,9 @@ <div class="field"> <input type="text" name="merge_title_field" value="{{.DefaultMergeMessage}}"> </div> + <div class="field"> + <textarea name="merge_message_field" rows="5" placeholder="{{$.i18n.Tr "repo.editor.commit_message_desc"}}">Reviewed-on: {{$.Issue.HTMLURL}} {{$approvers}}</textarea> + </div> <button class="ui green button" type="submit" name="do" value="rebase-merge"> {{$.i18n.Tr "repo.pulls.rebase_merge_commit_pull_request"}} </button> |