From c1d2259eacf083b8ea8a6dca2ead6deb7caf4523 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Thu, 9 Mar 2023 22:57:33 +0800 Subject: [PATCH] :lipstick: fix https://github.com/siyuan-note/siyuan/issues/7613 --- app/src/protyle/hint/extend.ts | 6 +++--- app/src/protyle/hint/index.ts | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/src/protyle/hint/extend.ts b/app/src/protyle/hint/extend.ts index ba3983bbe..c08ff67e7 100644 --- a/app/src/protyle/hint/extend.ts +++ b/app/src/protyle/hint/extend.ts @@ -322,13 +322,13 @@ export const hintRef = (key: string, protyle: IProtyle, isQuick = false): IHintD const iconName = getIconByType(item.type); let attrHTML = ""; if (item.name) { - attrHTML += `${item.name}`; + attrHTML += `${item.name}`; } if (item.alias) { - attrHTML += `${item.alias}`; + attrHTML += `${item.alias}`; } if (item.memo) { - attrHTML += `${item.memo}`; + attrHTML += `${item.memo}`; } if (attrHTML) { attrHTML = `
${attrHTML}
`; diff --git a/app/src/protyle/hint/index.ts b/app/src/protyle/hint/index.ts index 83c997ce4..ac777580b 100644 --- a/app/src/protyle/hint/index.ts +++ b/app/src/protyle/hint/index.ts @@ -323,13 +323,13 @@ ${unicode2Emoji(emoji.unicode, true)}`; const iconName = getIconByType(item.type); let attrHTML = ""; if (item.name) { - attrHTML += `${item.name}`; + attrHTML += `${item.name}`; } if (item.alias) { - attrHTML += `${item.alias}`; + attrHTML += `${item.alias}`; } if (item.memo) { - attrHTML += `${item.memo}`; + attrHTML += `${item.memo}`; } if (attrHTML) { attrHTML = `
${attrHTML}
`;