Fix isuploading flag
FarmMaps.Develop/FarmMapsLib/develop This commit looks good Details

pull/1/head
Willem Dantuma 2019-07-19 10:23:30 +02:00
parent e502591176
commit 62570f3d81
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ export class ResumableFileUploadService implements OnDestroy{
}
}
this.totalProgress=totalProgress/this.files.length;
if(totalProgress==100) this.isUploading=false;
if(this.totalProgress==100) this.isUploading=false;
}
handleState(state:UploadState) {