From 853cf71d31cd3b46d4186a420cbd92dec60b503c Mon Sep 17 00:00:00 2001
From: Jeffrey Chen <78434827+TCOTC@users.noreply.github.com>
Date: Tue, 25 Feb 2025 17:30:51 +0800
Subject: [PATCH] Support preview fonts (#14183)
---
app/src/config/editor.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/src/config/editor.ts b/app/src/config/editor.ts
index 3afdab74e..de55decdf 100644
--- a/app/src/config/editor.ts
+++ b/app/src/config/editor.ts
@@ -361,7 +361,7 @@ export const editor = {
let fontFamilyHTML = ``;
fetchPost("/api/system/getSysFonts", {}, (response) => {
response.data.forEach((item: string) => {
- fontFamilyHTML += ``;
+ fontFamilyHTML += ``;
});
fontFamilyElement.innerHTML = fontFamilyHTML;
});