Results 10 comments of caijf

I used craco and solved it this way, set the publicPath of webpack-dev-server ```javascript module.exports = { // ... devServer: (devServerConfig) => { // webpack-dev-server v3 devServerConfig.publicPath = '/'; return...

```javascript var max = Math.max(contrastOnBlack, contrastOnWhite); // ... return { // ... farthest: onWhite == max? _.WHITE : _.BLACK } ``` `onWhite == max` The conditional judgment here is always...

复现地址:https://codesandbox.io/s/fan-wei-xuan-ze-qi-antd-5-0-2-forked-eveekl?file=/demo.tsx

> 复现地址:https://codesandbox.io/s/fan-wei-xuan-ze-qi-antd-5-0-2-forked-eveekl?file=/demo.tsx > > 进入页面直接点击 “End Time” 就能复现了。 @afc163 @MadCcc

@afc163 @MadCcc `[email protected]` 遇到同样的问题,`setFieldValue` 和 `setFieldsValue ` 并不会重置错误信息。

Are there any scenarios where `onRequest` and `onRefresh` need to be distinguished? If we want to get and set the status, wouldn't it be better to add the `onStausChange` and...

> 因为老的手机浏览器不支持 gap css,这个是妥协的产物…… 那也可以给 `.adm-space-horizontal` 设置 `margin-right: calc(var(--gap-horizontal) * -1)`,效果如下: ![Image](https://github.com/user-attachments/assets/3d31053b-a3f2-4d27-9544-b07363d4fef6)

可以呀,我明天看下。理论上没有子元素的时候,高度为 `0` ,设置负间距也不影响。 ![Image](https://github.com/user-attachments/assets/b8b20148-7e49-4463-ab5e-00a3c0c9bbcc) 其他还需要看下使用 `Space` 的相关组件和示例会不会有影响。

#50315 已修复该问题。 @afc163 @yezhonghu0503 #49110 可以关了

> 复现地址:https://codesandbox.io/s/spring-pond-6rnsrc?file=/app.tsx 复现步骤:上传第二张照片时会显示 4张 renderItem 只需要渲染当前参数的 file,你每个都map渲染导致上面结果(上传2张会渲染4张,上传3张会渲染9张)。 > 还有 key 重复了(跟本 issue 无关)