From 3a5310375d71bb1c382f632af4c22a294c1753dc Mon Sep 17 00:00:00 2001 From: Vanessa Date: Thu, 9 Mar 2023 21:31:59 +0800 Subject: [PATCH] :art: fix https://github.com/siyuan-note/siyuan/issues/7607 --- app/src/protyle/upload/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/protyle/upload/index.ts b/app/src/protyle/upload/index.ts index dbdb29e1b..70a18b92b 100644 --- a/app/src/protyle/upload/index.ts +++ b/app/src/protyle/upload/index.ts @@ -106,7 +106,7 @@ const genUploadedLabel = (responseText: string, protyle: IProtyle) => { succFileText += genAssetHTML(type, path, filename.substring(0, filename.length - type.length), filename); if (!Constants.SIYUAN_ASSETS_AUDIO.includes(type) && !Constants.SIYUAN_ASSETS_VIDEO.includes(type) && keys.length - 1 !== index) { - succFileText += "\n"; + succFileText += "\n\n"; } }); const range = getEditorRange(protyle.wysiwyg.element);