Conversation
WalkthroughUI 문자열 구성 로직이 변경되었습니다. 이력 항목 라벨이 사용자명과 기여값에 따라 조사(이/님이)와 동사(상승/하강)를 조건부로 선택합니다. 왼쪽 축 라벨 경계 필터 조건은 줄바꿈만 변경되었으며 동작은 동일합니다. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
participant UI as HomeDegreeGraph UI
participant LB as LabelBuilder
participant Data as HistoryItem
UI->>Data: 각 HistoryItem 렌더링
UI->>LB: buildLabel(userName, contributed, formattedChange)
LB->>LB: particle = (userName == "우리 가족") ? "이" : " 님이"
LB->>LB: verb = (contributed >= 0) ? "상승" : "하강"
LB-->>UI: "${userName}${particle} ${formattedChange} ${verb} 시켰어요!"
Note right of UI: 왼쪽 축 라벨 경계 조건은 변경 없음(포맷팅만)
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Poem
Tip 🔌 Remote MCP (Model Context Protocol) integration is now available!Pro plan users can now connect to remote MCP servers from the Integrations page. Connect with popular remote MCPs such as Notion and Linear to add more context to your reviews and chats. 📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Free 💡 Knowledge Base configuration:
You can enable these sources in your CodeRabbit configuration. 📒 Files selected for processing (1)
Note 🎁 Summarized by CodeRabbit FreeYour organization is on the Free plan. CodeRabbit will generate a high-level summary and a walkthrough for each pull request. For a comprehensive line-by-line review, please upgrade your subscription to CodeRabbit Pro by visiting https://app.coderabbit.ai/login. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Join our Discord community for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
CodeRabbit Configuration File (
|
- userName이 "우리 가족"일 때 "님"을 붙이지 않도록 수정 - item.contributed가 음수인 경우 "하강시켰어요"로 표시
Summary by CodeRabbit
New Features
Style