update `.raw-content` when edit issue/comment content (#16021)

* update ``.raw-content`` when edit issue/comment content

fix #16000

Signed-off-by: a1012112796 <[email protected]>

* handle empty content

Co-authored-by: techknowlogick <[email protected]>
This commit is contained in:
a1012112796
2021-05-31 22:22:49 -04:00
committed by GitHub
co-authored by GitHub techknowlogick
parent 5de01e21a1
commit 072df3ff87
+2
View File
@@ -1098,8 +1098,10 @@ async function initRepository() {
}, (data) => {
if (data.length === 0 || data.content.length === 0) {
$renderContent.html($('#no-content').html());
$rawContent.text('');
} else {
$renderContent.html(data.content);
$rawContent.text($textarea.val());
}
const $content = $segment;
if (!$content.find('.dropzone-attachments').length) {