From aeabc28451f5a1f3af0402316f255851d769ec1e Mon Sep 17 00:00:00 2001 From: Phantom Date: Wed, 3 Dec 2025 22:32:18 +0800 Subject: [PATCH] chore(feishu-notify): modify notification card (#11656) refactor(feishu-notify): simplify issue card layout by removing redundant elements Remove unnecessary div elements and consolidate title display into the card header --- scripts/feishu-notify.js | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/scripts/feishu-notify.js b/scripts/feishu-notify.js index aae9004a4..d238dedb9 100644 --- a/scripts/feishu-notify.js +++ b/scripts/feishu-notify.js @@ -91,23 +91,6 @@ function createIssueCard(issueData) { return { elements: [ - { - tag: 'div', - text: { - tag: 'lark_md', - content: `**🐛 New GitHub Issue #${issueNumber}**` - } - }, - { - tag: 'hr' - }, - { - tag: 'div', - text: { - tag: 'lark_md', - content: `**📝 Title:** ${issueTitle}` - } - }, { tag: 'div', text: { @@ -158,7 +141,7 @@ function createIssueCard(issueData) { template: 'blue', title: { tag: 'plain_text', - content: '🆕 Cherry Studio - New Issue' + content: `#${issueNumber} - ${issueTitle}` } } }