diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2024-02-26 17:05:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-26 09:05:22 +0000 |
commit | f8974c772560e2c957e5e218bfb348d1ee6b9448 (patch) | |
tree | 117327b7a0892442928a14bc7aa25ac920e33d8f /templates/repo | |
parent | f8c1efe944c539396402fb014bbfdb67ba199ef2 (diff) | |
download | gitea-f8974c772560e2c957e5e218bfb348d1ee6b9448.tar.gz gitea-f8974c772560e2c957e5e218bfb348d1ee6b9448.zip |
Fix incorrect tree path value for patch editor (#29377)
Regression of #18718. When submitting the form,
EditRepoFileForm.TreePath is marked as "Required", so the value can't be
empty. The value is not used by backend, so use a meaningful dummy value
for it.
Diffstat (limited to 'templates/repo')
-rw-r--r-- | templates/repo/editor/patch.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/repo/editor/patch.tmpl b/templates/repo/editor/patch.tmpl index c9a78cc35f..8df8758988 100644 --- a/templates/repo/editor/patch.tmpl +++ b/templates/repo/editor/patch.tmpl @@ -14,8 +14,8 @@ <div class="breadcrumb-divider">:</div> <a class="section" href="{{$.BranchLink}}">{{.BranchName}}</a> <span>{{ctx.Locale.Tr "repo.editor.or"}} <a href="{{$.BranchLink}}">{{ctx.Locale.Tr "repo.editor.cancel_lower"}}</a></span> - <input type="hidden" id="tree_path" name="tree_path" value="" required> - <input id="file-name" maxlength="500" type="hidden" value="diff.patch"> + <input type="hidden" name="tree_path" value="__dummy_for_EditRepoFileForm.TreePath(Required)__"> + <input id="file-name" type="hidden" value="diff.patch"> </div> </div> <div class="field"> |