From 05d56df44e35a26f62c269b31357bb68e1279cdb Mon Sep 17 00:00:00 2001 From: tim Date: Sat, 6 Sep 2025 11:47:18 +0800 Subject: [PATCH] fix --- frontend_nuxt/components/BaseTimeline.vue | 1 - frontend_nuxt/utils/vditorPostCitation.js | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend_nuxt/components/BaseTimeline.vue b/frontend_nuxt/components/BaseTimeline.vue index 05f698cf2..fd8539ce6 100644 --- a/frontend_nuxt/components/BaseTimeline.vue +++ b/frontend_nuxt/components/BaseTimeline.vue @@ -12,7 +12,6 @@ :is="item.icon" :size="20" /> -
diff --git a/frontend_nuxt/utils/vditorPostCitation.js b/frontend_nuxt/utils/vditorPostCitation.js index 0081ab5be..4ddff4734 100644 --- a/frontend_nuxt/utils/vditorPostCitation.js +++ b/frontend_nuxt/utils/vditorPostCitation.js @@ -23,7 +23,7 @@ export default (apiBaseUrl, websiteBaseUrl) => { return ( body.map((item) => ({ value: `[🔗${item.title}](${websiteBaseUrl}/posts/${item.id})`, - html: `
${item.title}
`, + html: `
${item.title}
`, })) ?? [] ) } else {