From 1c49a51d19480fc7c8ceeab0fb8d158b4fea180b Mon Sep 17 00:00:00 2001 From: Jan-Lukas Else Date: Sun, 24 Apr 2022 19:53:58 +0200 Subject: [PATCH] Fix in editor UI --- ui.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui.go b/ui.go index 00fceb0..36f8ba8 100644 --- a/ui.go +++ b/ui.go @@ -1376,7 +1376,7 @@ func (a *goBlog) renderEditor(hb *htmlBuilder, rd *renderData) { // Update if edrd.updatePostUrl != "" { - hb.writeElementOpen("h2", "id", "#update") + hb.writeElementOpen("h2", "id", "update") hb.writeEscaped(a.ts.GetTemplateStringVariant(rd.Blog.Lang, "update")) hb.writeElementClose("h2") hb.writeElementOpen("form", "method", "post", "class", "fw p", "action", "#update")