Skip to content

Commit 9445dd2

Browse files
fix: fix bug with render class ant-upload-drag-container in dom (#6413)
Co-authored-by: Dmytro Lukashenko <[email protected]>
1 parent 2a5b18a commit 9445dd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/upload/Upload.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ export default defineComponent({
394394
class={`${prefixCls.value}-btn`}
395395
v-slots={slots}
396396
>
397-
<div class={`${prefixCls}-drag-container`}>{slots.default?.()}</div>
397+
<div class={`${prefixCls.value}-drag-container`}>{slots.default?.()}</div>
398398
</VcUpload>
399399
</div>
400400
{renderUploadList()}

0 commit comments

Comments
 (0)