Compare commits

..

2 Commits

Author SHA1 Message Date
Willem Dantuma
1073044f31 Merge branch 'develop' of https://git.akkerweb.nl/FarmMaps/FarmMapsLib into develop
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
2020-07-21 18:40:10 +02:00
Willem Dantuma
81126974f5 After cancel a single file close the upload dialog 2020-07-21 18:39:51 +02:00

View File

@ -100,6 +100,9 @@ export class ResumableFileUploadService implements OnDestroy{
if (index > -1) { if (index > -1) {
this.files.splice(index, 1); this.files.splice(index, 1);
} }
if(this.files.length==0) {
this.uploading = false;
}
}; };
doClose = function () { doClose = function () {