From ad241b1b5e5f1527dcdaac3dee50220c1dfbbadd Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Mon, 12 Jan 2026 09:11:08 +0800 Subject: [PATCH] :bug: Fix https://ld246.com/article/1768137870857 Signed-off-by: Daniel <845765@qq.com> --- app/src/protyle/wysiwyg/callout.ts | 2 +- app/src/protyle/wysiwyg/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/protyle/wysiwyg/callout.ts b/app/src/protyle/wysiwyg/callout.ts index b34c7e37f..c290821aa 100644 --- a/app/src/protyle/wysiwyg/callout.ts +++ b/app/src/protyle/wysiwyg/callout.ts @@ -112,7 +112,7 @@ export const updateCalloutType = (titleElement: HTMLElement, protyle: IProtyle) } else if (textElements[0].value === "TIP") { emojiHTML = "💡"; } else if (textElements[0].value === "IMPORTANT") { - emojiHTML = "️❗"; + emojiHTML = "❗"; } else if (textElements[0].value === "WARNING") { emojiHTML = "⚠️"; } else if (textElements[0].value === "CAUTION") { diff --git a/app/src/protyle/wysiwyg/index.ts b/app/src/protyle/wysiwyg/index.ts index d1f742bae..0c0099a76 100644 --- a/app/src/protyle/wysiwyg/index.ts +++ b/app/src/protyle/wysiwyg/index.ts @@ -3080,7 +3080,7 @@ export class WYSIWYG { } else if (subType === "TIP") { emojiHTML = "💡"; } else if (subType === "IMPORTANT") { - emojiHTML = "️❗"; + emojiHTML = "❗"; } else if (subType === "WARNING") { emojiHTML = "⚠️"; } else if (subType === "CAUTION") {