File tree 1 file changed +4
-4
lines changed
stories/5-components/Forms
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -25,9 +25,9 @@ export default {
25
25
control : 'number' ,
26
26
description : 'Maximum filesize allowed (in MB)' ,
27
27
} ,
28
- minFileSizeMB : {
28
+ minFileSizeKB : {
29
29
control : 'number' ,
30
- description : 'Minimum filesize allowed (in MB )' ,
30
+ description : 'Minimum filesize allowed (in KB )' ,
31
31
} ,
32
32
multiple : {
33
33
control : 'boolean' ,
@@ -56,7 +56,7 @@ const Template = (args) => ({
56
56
@helpTextDragDrop={{this.helpTextDragDrop}}
57
57
@helpTextFileNotSupported={{this.helpTextFileNotSupported}}
58
58
@maxFileSizeMB={{this.maxFileSizeMB}}
59
- @minFileSizeMB ={{this.minFileSizeMB }}
59
+ @minFileSizeKB ={{this.minFileSizeKB }}
60
60
@multiple={{this.multiple}}
61
61
@onFinishUpload={{this.onFinishUpload}}
62
62
@onQueueUpdate={{this.onQueueUpdate}}
@@ -72,7 +72,7 @@ Component.args = {
72
72
helpTextDragDrop : 'Sleep de bestanden naar hier om toe te voegen' ,
73
73
helpTextFileNotSupported : 'Dit bestandsformaat wordt niet ondersteund.' ,
74
74
maxFileSizeMB : 20 ,
75
- minFileSizeMB : 0 ,
75
+ minFileSizeKB : 0 ,
76
76
multiple : false ,
77
77
onFinishUpload : null ,
78
78
onQueueUpdate : null ,
You can’t perform that action at this time.
0 commit comments