Set upload flag only when file is found
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good

This commit is contained in:
Willem Dantuma 2020-07-21 19:11:30 +02:00
parent 1073044f31
commit ec9684b826

View File

@ -59,8 +59,8 @@ export class ResumableFileUploadService implements OnDestroy{
}
switch(state.status) {
case "uploading": {
this.isUploading = true;
if(file) {
this.isUploading = true;
file.progress = (state.progress?state.progress:0);
}
};break;