From ef6d76625bfe4bc62859250b03d1b7e4f6895cdd Mon Sep 17 00:00:00 2001 From: kch12 Date: Mon, 17 Mar 2025 14:50:38 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20URL=20=ED=85=8D=EC=8A=A4=ED=8A=B8=20?= =?UTF-8?q?=EC=8A=A4=ED=83=80=EC=9D=BC=20=EC=B5=9C=EC=A2=85=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/editor/common/link.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/editor/common/link.ts b/src/components/editor/common/link.ts index 70f4add..c570d58 100644 --- a/src/components/editor/common/link.ts +++ b/src/components/editor/common/link.ts @@ -161,7 +161,7 @@ export const createLinkNodeHTML = (attrs: LinkAttributes): HTMLElement => { summaryElement.textContent = attrs.summary; const urlElement = document.createElement('p'); - urlElement.className = 'text-[12px] text-sky-600 mt-[9px] no-underline truncate'; + urlElement.className = 'text-[12px] mt-[9px] text-sky-600 no-underline truncate'; urlElement.textContent = formattedUrl; textWrapper.appendChild(titleElement);