-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Closed
Labels
Description
- I have searched the issues of this repository and believe that this is not a duplicate.
Version
4.0.1
Environment
Reproduction link
Steps to reproduce
1::打开复现链接
2:滚动鼠标。出现悬浮按钮
3:观察悬浮按钮
What is expected?
按钮正确渲染为主题色
What is actually happening?
按钮渲染为默认颜色
antdv版本为4.0.3,
原因应该是ABackTop组件接受的props:type并未传递/穿透 给 AFloatButton组件,导致底层组件无法接受到type值
参考源码:
components/float-button/BackTop.tsx 33 (移除ABackTop组件props.type 声明)
或 components/float-button/BackTop.tsx 120 (为AFloatButton组件添加props.type值)

