Skip to content

Commit

Permalink
fix: 🐛 qa template format (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
bingryan authored Jun 1, 2023
1 parent bd50b2c commit 78bf059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/chat/components/message/Text.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 78bf059

Please sign in to comment.