From 78bf0592d9850421fbca2df6b9c620c4d92cb418 Mon Sep 17 00:00:00 2001 From: bingryan <41174435+bingryan@users.noreply.github.com> Date: Thu, 1 Jun 2023 20:29:36 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20qa=20template=20format=20?= =?UTF-8?q?(#53)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/chat/components/message/Text.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/chat/components/message/Text.vue b/src/views/chat/components/message/Text.vue index 3a83d29..05ef6d6 100644 --- a/src/views/chat/components/message/Text.vue +++ b/src/views/chat/components/message/Text.vue @@ -83,7 +83,7 @@ function copyQA(index: number) { const contextList = chatStore.selectContextQA(+id, index); - const copyContent = `### ${contextList[0].content} \n${contextList[1].content}`; + const copyContent = `### ${contextList[0].content} \n\n${contextList[1].content}`; copy(copyContent); }