Browse Source

Do not disable commit changes button on repost (#12644)

If the user has pressed commit changes and the post has failed - do not disable
the commit changes button.

Fix #12072

Signed-off-by: Andrew Thornton <art27@cantab.net>
for-closed-social
zeripath 3 years ago
committed by GitHub
parent
commit
17fbbe97d7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 1 deletions
  1. +1
    -0
      routers/repo/editor.go
  2. +1
    -0
      templates/repo/editor/edit.tmpl
  3. +3
    -1
      web_src/js/index.js

+ 1
- 0
routers/repo/editor.go View File

@ -184,6 +184,7 @@ func editFilePost(ctx *context.Context, form auth.EditRepoFileForm, isNewFile bo
}
ctx.Data["PageIsEdit"] = true
ctx.Data["PageHasPosted"] = true
ctx.Data["IsNewFile"] = isNewFile
ctx.Data["RequireHighlightJS"] = true
ctx.Data["RequireSimpleMDE"] = true

+ 1
- 0
templates/repo/editor/edit.tmpl View File

@ -6,6 +6,7 @@
<form class="ui edit form" method="post">
{{.CsrfTokenHtml}}
<input type="hidden" name="last_commit" value="{{.last_commit}}">
<input type="hidden" name="page_has_posted" value="{{.PageHasPosted}}">
<div class="ui secondary menu">
<div class="fitted item treepath">
<div class="ui breadcrumb field {{if .Err_TreePath}}error{{end}}">

+ 3
- 1
web_src/js/index.js View File

@ -1592,7 +1592,9 @@ async function initEditor() {
const dirtyFileClass = 'dirty-file';
// Disabling the button at the start
$commitButton.prop('disabled', true);
if ($('input[name="page_has_posted"]').val() !== 'true') {
$commitButton.prop('disabled', true);
}
// Registering a custom listener for the file path and the file content
$editForm.areYouSure({

Loading…
Cancel
Save