Update package json typescript version (#2368)

* update package json typescript version

* fix test problem

* fix minor upload type bug
This commit is contained in:
Eugenio Romano
2017-09-24 16:01:34 +01:00
committed by GitHub
parent 7f3a4fc513
commit 70a38acbff
35 changed files with 4312 additions and 2142 deletions

View File

@@ -133,7 +133,7 @@ export class FilesComponent implements OnInit {
});
}
this.uploadService.fileUploadComplete.debounceTime(300).subscribe(value => this.onFileUploadEvent(value));
this.uploadService.fileUploadComplete.asObservable().debounceTime(300).subscribe(value => this.onFileUploadEvent(value));
this.uploadService.fileUploadDeleted.subscribe((value) => this.onFileUploadEvent(value));
this.contentService.folderCreated.subscribe(value => this.onFolderCreated(value));