File tree Expand file tree Collapse file tree 1 file changed +14
-8
lines changed Expand file tree Collapse file tree 1 file changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -643,14 +643,20 @@ export class RxFileUploadCls implements RxFileUpload {
643
643
defaultIfEmpty ( fileData ) ,
644
644
) ,
645
645
) ,
646
- map ( ( fileData : RxFileUploadFileData ) : {
647
- rxFileUploadId : string ;
648
- fileData : string ;
649
- } => ( {
650
- rxFileUploadId :
651
- this . _rxFileUploadIds [ typeof fileIndex === 'number' ? fileIndex : 0 ] ,
652
- fileData : this . _serialize ( fileData ) ,
653
- } ) ) ,
646
+ map (
647
+ (
648
+ fileData : RxFileUploadFileData ,
649
+ ) : {
650
+ rxFileUploadId : string ;
651
+ fileData : string ;
652
+ } => ( {
653
+ rxFileUploadId :
654
+ this . _rxFileUploadIds [
655
+ typeof fileIndex === 'number' ? fileIndex : 0
656
+ ] ,
657
+ fileData : this . _serialize ( fileData ) ,
658
+ } ) ,
659
+ ) ,
654
660
map ( ( data : { rxFileUploadId : string ; fileData : string } ) : any =>
655
661
typeof additionalFormData !== 'undefined' &&
656
662
typeof additionalFormData . fieldName === 'string' &&
You can’t perform that action at this time.
0 commit comments