[ADF-3897] Upload Dialog - upload file error tooltip (#4148)

This commit is contained in:
Cilibiu Bogdan
2019-01-15 18:28:41 +02:00
committed by Eugenio Romano
parent baf9204a04
commit 5b168af134
9 changed files with 106 additions and 4 deletions

View File

@@ -54,6 +54,7 @@ export class FileModel {
id: string;
status: FileUploadStatus = FileUploadStatus.Pending;
errorCode: number;
progress: FileUploadProgress;
options: FileUploadOptions;
data: any;
@@ -64,6 +65,7 @@ export class FileModel {
this.name = file.name;
this.size = file.size;
this.data = null;
this.errorCode = null;
this.progress = {
loaded: 0,