- 相手(連絡先)
- -
- 会社
- -
- From(Gmail)
- notifications@github.com
- To / Cc(Gmail)
- relationshipcrm@noreply.github.com, koshiba@csplus.jp, author@noreply.github.com
- 作成日時
- 2026/07/12 13:04
- 更新日時
- 2026/07/12 13:04
本文
@chatgpt-codex-connector[bot] commented on this pull request. ### 💡 Codex Review Here are some automated review suggestions for this pull request. **Reviewed commit:** `2474f450dc` <details> <summary>ℹ️ About Codex in GitHub</summary> <br/> [Your team has set up Codex to review pull requests in this repo](https://chatgpt.com/codex/cloud/settings/general). Reviews are triggered when you - Open a pull request for review - Mark a draft as ready - Comment "@codex review". If Codex has suggestions, it will comment; otherwise it will react with 👍. Codex can also answer questions or update the PR. Try commenting "@codex address that feedback". </details> > ]); + // フォロー優先の内訳(一覧はスコア降順ソート済み) + const followSummary = { + topContacts: followPriorities + .filter((p) => p.rank === "HIGH" || p.rank === "MEDIUM") + .slice(0, 5), + highCount: followPriorities.filter((p) => p.rank === "HIGH").length, + overdueContacts: followPriorities.filter((p) => p.hasOverdueNextAction), **<sub><sub></sub></sub> Count overdue actions instead of contacts** When a single contact has multiple overdue OPEN interactions, this boolean filter contributes only one item, but the dashboard renders `overdueContacts.length` under the “期限超過アクション” label. That under-reports actual overdue actions (unlike the existing `overdueActionCount` query, which counts interactions), so the new summary can show 1 even when there are 2+ overdue actions for that contact. Useful? React with 👍 / 👎. -- Reply to this email directly or view it on GitHub: https://github.com/CSplus/RelationshipCRM/pull/15#pullrequestreview-4679298184 You are receiving this because you authored the thread. Message ID: <CSplus/RelationshipCRM/pull/15/review/4679298184@github.com>