You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have searched the issues of this repository and believe that this is not a duplicate.
Version
3.2.16
Environment
Windows10, Chrome Version 111.0.5563.147, ant-design-vue 3.2.16; vue-3.2.0
Reproduction link
Steps to reproduce
There is an incorrect rendering of the class "ant-upload-drag-container" in the DOM. If we use an empty tag , the empty
with class "[object Object]-drag-container" renders in the DOM.
What is expected?
The class "ant-upload-dragger-container" should be rendered in the DOM
What is actually happening?
The class "[object Object]-drag-container" renders in the DOM
This issue happens because of an error in string 397 of the Upload.tsx file.
{slots.default?.()}
prefixCls - ComputedRef, not a string.
To fix this issue, we can modify the code to access the string value of the prefixCls object - prefixCls.value
My suggestion:
{slots.default?.()}
The text was updated successfully, but these errors were encountered:
Hello!
Version
3.2.16
Environment
Windows10, Chrome Version 111.0.5563.147, ant-design-vue 3.2.16; vue-3.2.0
Reproduction link
Steps to reproduce
There is an incorrect rendering of the class "ant-upload-drag-container" in the DOM. If we use an empty tag , the empty
What is expected?
The class "ant-upload-dragger-container" should be rendered in the DOM
What is actually happening?
The class "[object Object]-drag-container" renders in the DOM
This issue happens because of an error in string 397 of the Upload.tsx file.
The text was updated successfully, but these errors were encountered: