dosubot[bot]
dosubot[bot]
Hey @philipdeng! 👋 I'm here to help you with bug fixes, answer questions, and even guide you on how to become a contributor. Let's tackle this issue together! To resolve...
Hi @Noyaaa! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the pro-components team. 这是 React 19 与 EditableProTablet(@ant-design/pro-components v3.x)已知的兼容性问题:组件内部会把如 `autoFocus` 这样的输入相关 props 直接传递到 render/formItemRender 返回的节点,如果这些节点是 `React.Fragment`,React 19 会严格校验并报错,因为 Fragment 只允许 `key`、`ref` 和 `children`...
这个问题在 React 18 + @ant-design/pro-components v2.8.10 下依然会出现,根本原因是 EditableProTable/ProTable 会把所有 props(包括 autoFocus 等 DOM 属性)直接透传到内部的 React.Fragment 或其它节点,但没有做过滤,导致 React.Fragment 收到非法属性时报错。这个问题不仅仅出现在 React 19,React 18 也会有,只是 React 19 校验更严格、报错更明显[相关讨论和源码分析](https://github.com/ant-design/pro-components/issues/9275)。 目前没有官方修复,临时解决办法有: - 避免在自定义 render/formItemRender 时返回...
这是一个已知的 EditableProTable 问题:在多行编辑模式下,依次取消多行编辑时,第二条及之后的数据会被删除,而不是仅退出编辑态。根本原因是组件内部用来追踪“编辑前数据”的引用(preEditRowRef)在多行编辑时会被覆盖和清空,导致取消时误判为“新建行”并触发删除逻辑[相关源码分析](https://github.com/ant-design/pro-components/blob/02da15a349f42ee5b75825161e7f80fad31cad68/src/utils/useEditableArray/index.tsx#L336-L1451)。 这个 bug 已在官方 issue 跟踪(如 [#9092](https://github.com/ant-design/pro-components/issues/9092)),并且近期有一次大规模重构(PR [#9295](https://github.com/ant-design/pro-components/pull/9295),2025-12-03 合并)对可编辑表格的编辑/取消逻辑进行了优化和修复,增加了多行编辑、取消等场景的测试,极有可能已经解决了该问题。 建议: 1. 升级到包含 PR #9295 的最新版 pro-components,验证问题是否已修复。 2. 如果暂时无法升级,可以参考 issue [#7604](https://github.com/ant-design/pro-components/issues/7604) 的 workaround:在取消时手动用 `formRef.current.setFieldValues` 恢复数据,或自行追踪每行的编辑前数据。 如需进一步跟进,可关注上述 issue 和 PR...
The bug is in the generator's `loadDefaultValues` function, which filters parameters by checking if their default value is truthy. This means any parameter with a default value of `false` (like...
Hi @shivabel502! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the ragflow team. The error happens because the Quart framework (used by RAGFlow) does not provide a request.file attribute. Instead, you should access...
Hi, @xiaozhi-agi. I'm [Dosu](https://dosu.dev), and I'm helping the langflow team manage their backlog. I'm marking this issue as stale. **Issue Summary:** - You are experiencing installation issues due to version...
Hi @yd0708! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the wind-layer team. 你遇到的问题是因为 ol-wind 的粒子速度(velocityScale)和数量(paths)默认是固定值,地图缩放时,单位像素代表的实际距离变小,导致高层级下粒子运动更快、路径更长、密度更大。 wind-layer 支持将 velocityScale 和 paths 设置为函数,这样可以根据地图 zoom 或 resolution 动态调整,但库本身没有内置“自动归一化”逻辑,需要你自己实现。核心思路是:让 velocityScale 随地图分辨率(resolution)成反比,这样视觉上粒子速度和长度就能保持一致。 示例代码(假设你用 OpenLayers): ```js const windLayer...
Hello, @askeer25! I'm here to help you with any bugs, questions, or contributions. Let's tackle this issue together! I found some similar threads regarding plugin installation failures in Dify version...
To resolve the `TypeError` in the `test_dag_run_listener.py` file, you need to provide the missing required keyword-only arguments `run_after`, `run_type`, and `triggered_by` when calling the `create_dagrun()` function. Here is how you...