Set upload flag only when file is found
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
This commit is contained in:
parent
1073044f31
commit
ec9684b826
@ -58,9 +58,9 @@ export class ResumableFileUploadService implements OnDestroy{
|
|||||||
this.isClosed=false;
|
this.isClosed=false;
|
||||||
}
|
}
|
||||||
switch(state.status) {
|
switch(state.status) {
|
||||||
case "uploading": {
|
case "uploading": {
|
||||||
this.isUploading = true;
|
|
||||||
if(file) {
|
if(file) {
|
||||||
|
this.isUploading = true;
|
||||||
file.progress = (state.progress?state.progress:0);
|
file.progress = (state.progress?state.progress:0);
|
||||||
}
|
}
|
||||||
};break;
|
};break;
|
||||||
|
Loading…
Reference in New Issue
Block a user