diff --git a/app/src/protyle/wysiwyg/renderBacklink.ts b/app/src/protyle/wysiwyg/renderBacklink.ts index 3c5b4cae805..62c463dddf2 100644 --- a/app/src/protyle/wysiwyg/renderBacklink.ts +++ b/app/src/protyle/wysiwyg/renderBacklink.ts @@ -46,7 +46,7 @@ export const foldPassiveType = (expand: boolean, element: HTMLElement | Document Array.from(element.children).forEach((item, index) => { if ((expand && index > 2) || (!expand && index > 1)) { if ((expand && index === 3) || (!expand && index === 2)) { - item.insertAdjacentHTML("beforebegin", '
'); + item.insertAdjacentHTML("beforebegin", '
'); } item.classList.add("fn__none"); }