summaryrefslogtreecommitdiffstats
path: root/web_src/js/features
diff options
context:
space:
mode:
authorHEREYUA <37935145+HEREYUA@users.noreply.github.com>2024-03-22 19:22:36 +0800
committerGitHub <noreply@github.com>2024-03-22 11:22:36 +0000
commitbf34723491dcbb45dee7888c574e295cae6096be (patch)
treec9c16db369f18912318f116f940d0946fc574b97 /web_src/js/features
parent226231ea27d4f2b0f09fa4efb39501507613b284 (diff)
downloadgitea-bf34723491dcbb45dee7888c574e295cae6096be.tar.gz
gitea-bf34723491dcbb45dee7888c574e295cae6096be.zip
Fix: Abnormal strings appear when comments are saved after editing (#29991)
Partially resolved(The second problem): [#29986](https://github.com/go-gitea/gitea/issues/29986) **Before** HTML strings appear when comments are saved after editing ![image](https://github.com/go-gitea/gitea/assets/37935145/c356d99a-8473-4cc5-8e38-1b207ccd8b12) **After** https://github.com/go-gitea/gitea/assets/37935145/525601f9-3ee1-4266-9105-36d82b91b1c8
Diffstat (limited to 'web_src/js/features')
-rw-r--r--web_src/js/features/repo-legacy.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web_src/js/features/repo-legacy.js b/web_src/js/features/repo-legacy.js
index 5afb407223..18978e9e29 100644
--- a/web_src/js/features/repo-legacy.js
+++ b/web_src/js/features/repo-legacy.js
@@ -436,7 +436,7 @@ async function onEditContent(event) {
const $content = $segment;
if (!$content.find('.dropzone-attachments').length) {
if (data.attachments !== '') {
- $content[0].append(data.attachments);
+ $content[0].insertAdjacentHTML('beforeend', data.attachments);
}
} else if (data.attachments === '') {
$content.find('.dropzone-attachments').remove();