章鱼怪

Results 4 comments of 章鱼怪

https://github.com/ant-design/ant-design/blob/ad3c7747e155ad0dd9e13a1a91417709fde73082/components/affix/index.tsx#L176-L177 这里 `width` 和 `height` 计算为 0 时,导致出现抖动,我可以提个 PR 吗?

@chenyuf2 hi,MenuItem 的 key 允许是 React.Key,那么就包含了 string | number 类型,不应该只允许 string 类型,这个问题个人认为应该在 rc-menu 中去解决,问题的原因: 1. items 转 JSX 表达式时,所有的 key 都变成了 string 类型。https://github.com/react-component/menu/blob/4ae012f8276b9ac41182e030980d7dbc65ae3563/src/utils/nodeUtil.tsx#L60-L62 ,控制台查看 JSX 表达式的 key 类型:https://stackblitz.com/edit/vitejs-vite-hfxqfp?file=src%2FApp.tsx 3. parseChildren...

是的,但文档中 string 是没问题的,React.Key 可能会有问题,可以让 key 的类型支持 React.Key :see_no_evil: