From 3a360b901f45526030997f88d38de3738085f6d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=A2=E3=83=AC=E3=82=AF=E3=82=B5=E3=83=B3=E3=83=80?= =?UTF-8?q?=E3=83=BC=2Eeth?= <4975670+0x4007@users.noreply.github.com> Date: Thu, 3 Oct 2024 16:44:55 +0900 Subject: [PATCH] Update src/handlers/issue-deduplication.ts --- src/handlers/issue-deduplication.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers/issue-deduplication.ts b/src/handlers/issue-deduplication.ts index dc6daf7..1da7bc6 100644 --- a/src/handlers/issue-deduplication.ts +++ b/src/handlers/issue-deduplication.ts @@ -114,7 +114,7 @@ async function handleSimilarIssuesComment(context: Context, payload: IssuePayloa }) .join("\n"); const footnoteLinks = [...Array(finalIdx).keys()].map((i) => `[^0${i + 1}^]`).join(""); - const body = "\n###### Similar " + footnoteLinks + ":\n\n" + commentBody; + const body = "\n###### Similar " + footnoteLinks + "\n\n" + commentBody; // Remove the existing foot note const existingBody = context.payload.issue.body;