We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7822179 commit d6050f0Copy full SHA for d6050f0
packages/vuetify/src/labs/VFileUpload/VFileUploadItem.tsx
@@ -66,9 +66,13 @@ export const VFileUploadItem = genericComponent<VFileUploadItemSlots>()({
66
return (
67
<VListItem
68
{ ...listItemProps }
69
+ class={[
70
+ 'v-file-upload-item',
71
+ props.class,
72
+ ]}
73
title={ props.title ?? props.file?.name }
74
subtitle={ props.showSize ? humanReadableFileSize(props.file?.size, base.value) : props.file?.type }
- class="v-file-upload-item"
75
+ style={ props.style }
76
>
77
{{
78
...slots,
0 commit comments