aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/editor/commit_form.tmpl
diff options
context:
space:
mode:
authoryp05327 <576951401@qq.com>2023-02-24 06:14:07 +0900
committerGitHub <noreply@github.com>2023-02-23 15:14:07 -0600
commited954b070d481a14aac08f925a15ecc8c2c33c61 (patch)
tree4ebafb341c9db0cc8629ce8269674443007960a2 /templates/repo/editor/commit_form.tmpl
parent8ed6096158cb764f2259232eba0a46e6c273354c (diff)
downloadgitea-ed954b070d481a14aac08f925a15ecc8c2c33c61.tar.gz
gitea-ed954b070d481a14aac08f925a15ecc8c2c33c61.zip
Fix commit name in Apply Patch page (#23086)
Fixes https://github.com/go-gitea/gitea/issues/22621#issuecomment-1439309200
Diffstat (limited to 'templates/repo/editor/commit_form.tmpl')
-rw-r--r--templates/repo/editor/commit_form.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/editor/commit_form.tmpl b/templates/repo/editor/commit_form.tmpl
index 7fac7f13bc..c6c48c5a83 100644
--- a/templates/repo/editor/commit_form.tmpl
+++ b/templates/repo/editor/commit_form.tmpl
@@ -9,7 +9,7 @@
{{.locale.Tr "repo.editor.commit_changes"}}
{{- end}}</h3>
<div class="field">
- <input name="commit_summary" placeholder="{{if .PageIsDelete}}{{.locale.Tr "repo.editor.delete" .TreePath}}{{else if .PageIsUpload}}{{.locale.Tr "repo.editor.upload_files_to_dir" .TreePath}}{{else if .IsNewFile}}{{.locale.Tr "repo.editor.add_tmpl"}}{{else}}{{.locale.Tr "repo.editor.update" .TreePath}}{{end}}" value="{{.commit_summary}}" autofocus>
+ <input name="commit_summary" placeholder="{{if .PageIsDelete}}{{.locale.Tr "repo.editor.delete" .TreePath}}{{else if .PageIsUpload}}{{.locale.Tr "repo.editor.upload_files_to_dir" .TreePath}}{{else if .IsNewFile}}{{.locale.Tr "repo.editor.add_tmpl"}}{{else if .PageIsPatch}}{{.locale.Tr "repo.editor.patch"}}{{else}}{{.locale.Tr "repo.editor.update" .TreePath}}{{end}}" value="{{.commit_summary}}" autofocus>
</div>
<div class="field">
<textarea name="commit_message" placeholder="{{.locale.Tr "repo.editor.commit_message_desc"}}" rows="5">{{.commit_message}}</textarea>