dosubot[bot]

Results 14438 comments of dosubot[bot]

你反馈的 EditableProTable 在 React 19.1.0 下报错和卡顿,确实是已知的兼容性问题。根本原因是组件内部(PureProField)会把 autoFocus、onKeyDown 等输入相关 props 直接传递给 render/formItemRender 返回的节点,如果返回的是 React.Fragment,React 19+ 会直接报错并导致性能下降。这个问题目前在 2.8.10 版本和主干代码中都没有修复或兼容处理,属于 pro-components 对 React 19.x 的适配缺口[源码分析](https://github.com/ant-design/pro-components/blob/5ece0282c33d07e5d724e4f83dbf027a010a763f/src/field/PureProField.tsx)。 antd v5 虽然大部分功能兼容 React 19,但官方也说明有部分问题需要特殊配置才能适配,相关兼容方案会在 antd v6 移除[官方说明](https://github.com/ant-design/ant-design/pull/54898)。...

你的路由配置补充很有帮助!结合你之前遇到的 menuRender 和 headerRender 设置首次跳转后不生效、刷新才恢复的问题,核心原因是 ProLayout 的布局配置(如 menuRender、headerRender)会在路由切换时根据当前菜单元数据和默认设置重新合并和应用。如果登录后用 history.push 跳转,部分 layout 配置可能没有及时同步,导致菜单和头部渲染异常,刷新页面后才会重新初始化并生效。 常见触发点包括:异步菜单数据、直接修改 defaultMenuData、或 layout/pure 模式切换,这些都可能让 layout 配置在首次跳转时“失效”或未及时更新,直到页面刷新才恢复正常。[相关源码逻辑](https://github.com/ant-design/pro-components/blob/02da15a349f42ee5b75825161e7f80fad31cad68/src/layout/ProLayout.tsx#L269-L910)和[类似问题讨论](https://github.com/ant-design/pro-components/issues/1788)。 建议:确保 layout 配置(menuRender、headerRender 等)在登录跳转后能被重新应用,比如在登录成功后主动触发一次状态更新或 reload,或者在路由 meta 里也同步这些配置。这样可以避免首次跳转后 layout 配置“丢失”或未生效。如果你有更具体的路由或 layout 配置问题,欢迎补充说明! *To...

你遇到的 menuRender/headerRender 配置首次跳转后未生效,实际上是 ProLayout 合并配置和状态更新机制导致的。要让 layout 配置在登录跳转后立即生效,无需刷新页面,可以这样做: 1. **登录成功后,主动触发一次 layout 状态刷新**。如果你用的是 umi4 + pro-components 2.x,推荐在登录成功后调用 `refresh()` 或 `setInitialState`,这样 ProLayout 会重新合并 initialState/settings 并立即应用 menuRender、headerRender 等配置,无需手动刷新页面。比如: ```js // 登录成功后 await refresh(); //...

Hi @thedarkamendez! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the plate team. This scroll jump bug in bounded editors is not documented as a known issue in Plate, but similar scroll problems...

Thanks for sharing the new demo—it confirms the scroll jump is reproducible and not isolated to your earlier steps. This behavior comes from how Plate manages scroll-to-selection: the scroll logic...

@airwenlee 你好!我是一个可以帮助你解决bug、回答问题并成为贡献者的机器人。我会在等待人类维护者的时候帮助你。 The frequent cookie updates in "TikTokDownloader V5.5" are designed to ensure that the user remains logged in and can access the necessary features. This is managed by a...

Hi @Lin-top! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the TikTokDownloader team. 这是一个已知的常见问题,通常和网络环境、代理设置、Cookie 失效或 TikTok 平台变动有关。你遇到的“请求超时重连”现象,社区和维护者有过多次讨论,主要排查建议如下: 1. **检查代理设置**:如果你所在的网络无法直接访问 TikTok,必须在 `settings.json` 里正确配置 `proxy_tiktok`,或在命令行设置 `https_proxy`、`http_proxy`、`all_proxy`,否则会持续超时 [参考](https://github.com/JoeanAmier/TikTokDownloader/issues/268)。 2. **更新 Cookie**:TikTok 的接口经常变动,失效或错误的 Cookie 会导致无法获取数据,建议用无痕模式手动获取新的 Cookie 并写入...

Hello @GuanWhite! I'm here to help you solve bugs, answer questions, and assist you as you become a contributor. I'll be waiting for a human maintainer to join us, but...

This is a known limitation in Dify: agent nodes only allow models that support agent strategies like function calling or ReACT. Most local models, including those deployed via LocalAI, do...

Hi @yolanda-lopezarca! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the langfuse team. This is a known issue in Langfuse 3.90.0: navigation up/down in the Scores tab does not respect the filtered traces...