dosubot[bot]
dosubot[bot]
The TypeError happens because the Google Drive connector's sync logic returns a regular (synchronous) generator for document batches, but the sync task tries to iterate over it with `async for`,...
Hi @neohan666! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the pro-components team. 你反馈的 readonly 优先级问题确实存在:虽然 ProComponents 的设计是让子组件(如 ProFormFields)的 readonly 属性优先于父级 ProForm 的 readonly,但实际代码合并顺序导致有时无法覆盖父级,只读状态会被父级 readonly“盖住” [相关源码分析](https://github.com/ant-design/pro-components/blob/70c7340aec9f996e5f85be20ac4033fb08b8297c/src/form/components/FormItem/warpField.tsx)。 官方注释也说明了“表单项的 readonly 优先级高于表单整体”,但实际表现不一致,目前没有文档或 PR 修复这个问题 [源码注释](https://github.com/ant-design/pro-components/blob/70c7340aec9f996e5f85be20ac4033fb08b8297c/src/form/BaseForm/BaseForm.tsx)。 临时解决方案:对于自定义表单项,可以手动传递...
目前 Conversations 组件的 onActiveChange 回调只会返回选中项的 key(string),不会直接返回完整的会话对象。如果你需要完整信息,需要在 items 数组中通过 key 查找对应项。这是官方设计和最佳实践,目的是让回调保持简单、避免重复传递数据,和 React/Ant Design 的受控组件风格一致[实现细节](https://github.com/ant-design/x/blob/af5370deff0fc140ec1a4908c3fc689f577ad0a7/components/conversations/index.tsx) [API 文档](https://github.com/ant-design/x/blob/af5370deff0fc140ec1a4908c3fc689f577ad0a7/components/conversations/index.zh-CN.md)。 常见做法如下: ```js const handleActiveChange = (key) => { const selected = items.find(item => item.key ===...
Hi @midsmr! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the pro-components team. 这个错误是因为 ProComponents 3.x 依赖于 Ant Design 的深层导入(如 antd/lib/table/hooks/useLazyKVMap),而这些导入在 Antd 5.x 已经被移除,导致不兼容。解决方法有两个:[参考](https://github.com/ant-design/pro-components/issues/9227) 1. 将 antd 降级到 4.x(比如 4.24.13),这样可以继续使用 ProComponents 3.x。 2....
Hi @zhnd! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the pro-components team. 这个类型推断问题是已知的,主要原因是 pro-components 的部分类型引用路径(如 `src/components`)在发布包中无法识别,导致像 `rules` 这样的 props 类型被推断为 `any`。这个问题在 2.8.10 版本存在,属于打包和类型导出相关的 bug,而不是组件本身类型定义错误。相关讨论和案例可以参考 [issue 9053](https://github.com/ant-design/pro-components/issues/9053)。 目前没有官方修复或 workaround。如果你需要类型提示,可以尝试升级或降级 pro-components 版本,有用户反馈部分版本类型定义正常。如果必须用当前版本,可以在代码里手动为 `rules` props...
Hi @AndresPinerosZen! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the atlantis team. This is a known bug in Atlantis that affected versions including 0.35.1. The issue was caused by a mismatch between...
The fix for the workspace lock bug is included in Atlantis version 0.35.1, but only in builds from commit 7f1ed4a (build date: 2025-09-18) and later. If you're running an earlier...
Hi @maitouqwq-alt! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the TikTokDownloader team. storage_format 参数需要在项目根目录下的 settings.json 配置文件中设置,例如: ```json { "storage_format": "xlsx" } ``` 支持的取值有 csv、xlsx 和 sql(SQLite)。如果不设置或设置错误,程序不会保存任何数据到文件。部分功能(如采集评论、账号详情、搜索结果、抖音热榜数据)必须设置该参数才能正常使用。修改 settings.json 后需重启程序生效。 该参数的详细说明在项目的 Wiki 和文档中有记录,但 README...
Hi @otto802! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the MeetingBar team. This is a known localization bug in MeetingBar 4.11.6: the missing tab label and the untranslated string (`$preferences_tab_links$`) appear because...
你遇到的 ValidationError(缺少 `type` 字段)是因为 Langfuse 3.108.0 版本的 prompts API 响应没有包含 SDK 需要的 `type` 字段。这个问题在 Langfuse 平台 3.121.0 及以上版本已经修复,无需更换 python-sdk 版本,只需升级 Langfuse 后端即可解决此报错。[参考](https://github.com/langfuse/langfuse/issues/8352) 建议将 Langfuse 升级到至少 3.121.0 版本,升级后 `client.prompts.list()` 就能正常返回数据,不会再有字段缺失的校验错误。[相关说明](https://github.com/langfuse/langfuse/issues/8352) 如升级后还有问题,欢迎继续反馈。...