dosubot[bot]
dosubot[bot]
There isn’t a special workaround documented for this error beyond what’s in the official Plate + Next.js 15 guides and templates. A working setup in production requires: every interactive Plate...
Hi @zouyi741599086! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the pro-components team. 这个问题的根本原因是 ProList 的选中样式依赖于 key 的类型完全一致。内部选中逻辑会用 Set.has(key) 来判断选中状态,如果你的数据 key 是数字,但选中的 key 是字符串(或反之),就不会显示选中样式。代码没有做类型转换或归一化,严格区分 string 和 number 类型,所以会出现你描述的现象 [相关讨论](https://github.com/ant-design/pro-components/issues/4170) 。 目前没有看到新版本修复这个问题,官方和维护者建议:**所有 key 类型保持一致**,推荐都用字符串类型,这样选中样式就能正常显示...
你反馈的菜单样式污染问题,确实是社区已知的升级后常见问题,主要原因是 antd v5 全面迁移到 CSS-in-JS,样式隔离机制发生了变化,导致自定义菜单或路由切换时样式容易污染全局 [相关讨论](https://github.com/ant-design/ant-design/issues/54299#issuecomment-3301458743)。 **推荐解决方案:** 1. **使用 StyleProvider 隔离样式** 在页面或自定义菜单组件外层包裹 ``,可以提升样式隔离优先级,减少污染 [源码实现](https://github.com/ant-design/cssinjs/blob/e7fd8a38bb6e34980eef479eacf9d972e737112e/src/StyleContext.tsx#L15-L126)。 ```jsx import { StyleProvider } from 'antd-style'; // 或 import { StyleProvider } from '@ant-design/cssinjs'; ```...
Hi @jiayapengapp! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the pro-components team. 你的问题是由于倒计时定时器或 getList 函数反复调用 `formRef.current.setFieldsValue`,每次都把 dateRange 的值重置为默认的 30 天区间,导致日期选择器面板每秒都跳回默认月份,无法正常切换月份。只有你手动选择一次日期后,值才会真正改变,picker 才不会再被强制重置,可以正常切换月份。 解决方法:只在初始化时设置一次默认日期,不要在定时器或 getList 里反复调用 `setFieldsValue`。如果需要刷新数据,只刷新表格,不要重置表单的日期区间。推荐用 React 的 state 或 form 的值来管理日期区间,只在用户主动选择或确实需要变更时才更新。 示例代码:...
Hi @zakatlyubvi! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the ragflow team. The 502 gateway error on `/api/v1/admin/login` and the inability to access the admin panel are most likely caused by the...
You should check the ragflow-cpu container (usually named docker-ragflow-cpu-1) for admin server errors and to start the admin service. Inside this container, the admin server should start automatically if you...
To connect your domain to RAGFlow running in Docker, follow these steps: 1. Make sure your domain's DNS A record points to your server's IP, and that ports 80 and...
Hi @zp123914! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the pro-components team. 这个问题已经被社区确认,是 ProTable 及 Table 组件的已知 bug:复制单元格内容(尤其是中文)时,粘贴出来会带有多余的空格,主要和表格单元格的 DOM 结构、Ant Design 的 Typography.Text 包裹、以及浏览器的文本选择行为有关。相关讨论见 [pro-components #7704](https://github.com/ant-design/pro-components/issues/7704)。 目前官方还没有直接修复,根本原因是 ProTable 渲染时会用 `genCopyable` 包裹文本,生成的 block...
I couldn't find specific information about the error code 'e3q8' in the Langflow codebase or documentation. It's possible that this error code is not documented or is specific to a...
**Related Documentation** Checked 1 published document(s) in 1 knowledge base(s). No updates required. How did I do? Any feedback? [](https://go.dosu.dev/discord-bot)