dosubot[bot]

Results 14441 comments of dosubot[bot]

This bug was caused by the dashboard widget using a simple count aggregation instead of counting distinct user or session IDs. Recent updates have addressed this: as of PR #9808,...

你反馈的 Radio disabled 效果不一致,根本原因是 antd 5.29.1 版本中,Radio.Group 的 disabled 状态不会绝对覆盖子 Radio 的 disabled 属性。如果你在 group 上设置 disabled,同时某个子 Radio 显式传递了 disabled={false},那么这个子项会被认为是可用的,导致 UI 效果不一致。这是因为内部实现是 radioProps.disabled = radioProps.disabled ?? groupContext.disabled(即子项优先级更高)[相关源码分析](https://github.com/ant-design/ant-design/issues/55901)。 临时解决方案:不要在 group disabled...

Hi @xiaoliu1990! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the ant-design team. 目前 addonAfter 和 addonBefore 已在 Ant Design 5.29.0 被废弃,官方推荐用 Space.Compact + Space.Addon 实现前后缀 UI。这样做的确会让表单回显(表单值绑定)变复杂,因为 Form.Item 的控制属性(如 value、onChange)会被加在布局容器上,而不是实际的输入组件上,导致回显和校验失效。这个问题是已知的,官方和社区有两种主流解决方案: **1. 嵌套 Form.Item...

To address the issue of Custom SQL not using quotation marks for column names with spaces, you can ensure that the SQL generation logic in Superset correctly applies quotes to...

Hi @andrasferenczi! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the storybook team. This behavior—where `typeof window` is `undefined` but `window` itself exists—does not originate from Storybook core. Storybook's codebase and preview runtime...

Hi @6apc1k! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the storybook team. Setting `dynamicTitle: false` in your globals toolbar config should keep the toolbar title static, but in your case, the title...

Hi @nmcc24! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the XcodeProj team. The iOS compilation errors stem from two main issues: 1. In Path+Extras.swift, the code uses #if os(macOS) to select Darwin.glob...

That's right—PR #1016 proposes platform-specific compiler flags and iOS version checks to resolve the same iOS compilation issues you described. As of the latest code snapshot, these changes have not...

Hi, @bsherman. I'm [Dosu](https://dosu.dev), and I'm helping the ucore team manage their backlog and am marking this issue as stale. **Issue Summary:** - You proposed creating a reusable release checklist...

Hi @luoxuanzao! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the MinerU team. 目前 MinerU 的 PaddleOrientationClsModel 已经能区分 0/90/180/270 四种角度,方向的判断是通过 ONNX 分类模型的输出 label("90" 和 "270")来决定顺时针还是逆时针旋转,实际旋转时会根据 label 选择顺时针或逆时针操作(见 img_rotate 方法)。但目前的实现只用 OCR 检测(rec=False)得到的文本框几何特征(如竖直框数量)来判断是否需要做方向分类,完全没有用到 OCR 识别置信度,方向分类本身也不参考...