diff --git a/ng2-components/ng2-alfresco-core/src/models/file.model.ts b/ng2-components/ng2-alfresco-core/src/models/file.model.ts
index f4b9f8fa7a..30abb7979e 100644
--- a/ng2-components/ng2-alfresco-core/src/models/file.model.ts
+++ b/ng2-components/ng2-alfresco-core/src/models/file.model.ts
@@ -54,7 +54,7 @@ export class FileModel {
this.id = this.generateId();
this.name = file.name;
this.size = file.size;
- this.data = {};
+ this.data = null;
this.progress = {
loaded: 0,
diff --git a/ng2-components/ng2-alfresco-upload/src/components/file-uploading-dialog.component.html b/ng2-components/ng2-alfresco-upload/src/components/file-uploading-dialog.component.html
index d5d699ae3d..164037bc94 100644
--- a/ng2-components/ng2-alfresco-upload/src/components/file-uploading-dialog.component.html
+++ b/ng2-components/ng2-alfresco-upload/src/components/file-uploading-dialog.component.html
@@ -11,26 +11,26 @@
{{ isDialogMinimized ? 'keyboard_arrow_up' : 'keyboard_arrow_down' }}
-
+ *ngIf="!uploadList.isUploadCompleted() && !uploadList.isUploadCancelled()">
{{ 'FILE_UPLOAD.MESSAGES.UPLOAD_PROGRESS' | translate: { completed: totalCompleted, total: filesUploadingList.length } }}
-
+ *ngIf="uploadList.isUploadCompleted()">
{{ 'FILE_UPLOAD.MESSAGES.UPLOAD_COMPLETED' | translate: { completed: totalCompleted, total: filesUploadingList.length } }}
-
{{ 'FILE_UPLOAD.MESSAGES.UPLOAD_CANCELED' | translate }}
-