Set upload flag only when file is found
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good Details

2022.01
Willem Dantuma 2020-07-21 19:11:30 +02:00
parent 1073044f31
commit ec9684b826
1 changed files with 2 additions and 2 deletions

View File

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