aboutsummaryrefslogtreecommitdiffstats
path: root/routers/repo
diff options
context:
space:
mode:
authorzeripath <art27@cantab.net>2020-08-29 22:32:46 +0100
committerGitHub <noreply@github.com>2020-08-29 17:32:46 -0400
commit17fbbe97d7b4fca45d112f924191600eff52957b (patch)
tree81aacf1ad3cbf2c8017df3d017c3dfa7b5ff22ff /routers/repo
parent9abc16a280ca43b5b7007d0c9f292b0fffa46a4b (diff)
downloadgitea-17fbbe97d7b4fca45d112f924191600eff52957b.tar.gz
gitea-17fbbe97d7b4fca45d112f924191600eff52957b.zip
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>
Diffstat (limited to 'routers/repo')
-rw-r--r--routers/repo/editor.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/routers/repo/editor.go b/routers/repo/editor.go
index f91ce1b462..6a3f379f6a 100644
--- a/routers/repo/editor.go
+++ b/routers/repo/editor.go
@@ -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