-
Notifications
You must be signed in to change notification settings - Fork 433
feat: support auto scroll code block on chat #4547
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
/next |
""" Walkthrough本次更改主要涉及前端组件和样式的调整,包括为按钮组件引入可选的 loading 图标显示控制、优化代码编辑器的滚动行为、调整 CSS 类名和样式、统一 ChatMarkdown 组件的 markdown 解析选项,以及移除部分未使用的导入。未涉及导出实体签名的更改。 Changes
Sequence Diagram(s)sequenceDiagram
participant 用户
participant InlineActionWidget
participant Button
用户->>InlineActionWidget: 触发操作
InlineActionWidget->>Button: 渲染 Button (loading, showLoadingIcon=false)
Button-->>InlineActionWidget: 按需显示/隐藏 loading 图标
sequenceDiagram
participant 用户
participant CodeEditorWithHighlight
participant 代码高亮区域
用户->>CodeEditorWithHighlight: 输入内容
CodeEditorWithHighlight->>代码高亮区域: 更新内容
CodeEditorWithHighlight->>代码高亮区域: 自动滚动至底部
Possibly related PRs
Suggested labels
Suggested reviewers
Warning There were issues while running some tools. Please review the errors and either fix the tool's configuration or disable the tool if it's a critical failure. 🔧 ESLint
yarn install v1.22.22 Tip ⚡️ Faster reviews with caching
Enjoy the performance boost—your workflow just got faster. 📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
⏰ Context from checks skipped due to timeout of 90000ms (8)
🔇 Additional comments (2)
✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
🎉 PR Next publish successful! 3.8.3-next-1747129752.0 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #4547 +/- ##
==========================================
- Coverage 52.88% 52.88% -0.01%
==========================================
Files 1677 1677
Lines 103358 103358
Branches 22391 22383 -8
==========================================
- Hits 54662 54657 -5
- Misses 40516 40521 +5
Partials 8180 8180
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
/next |
🎉 PR Next publish successful! 3.8.3-next-1747189218.0 |
Types
Background or solution
Before:
After:
解决 Markdown 文本被 HTML 转义的问题

Changelog
support auto scroll code block on chat
Summary by CodeRabbit
新功能
样式
其他