From 9c04e8757b689a3952dede4b5f52d3dd8128d648 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Thu, 22 Oct 2020 01:38:35 +0200 Subject: [PATCH] [DEBUG] correct scope --- .../app/component/upload-progress/upload-progress.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/front/src/app/component/upload-progress/upload-progress.ts b/front/src/app/component/upload-progress/upload-progress.ts index 8c84614..6470d0c 100644 --- a/front/src/app/component/upload-progress/upload-progress.ts +++ b/front/src/app/component/upload-progress/upload-progress.ts @@ -26,12 +26,12 @@ export class PopInUploadProgress implements OnInit { @Input() mediaSize: number = 999999999999; @Input() result: string = null; @Input() error: string = null; - private closeButtonTitle: string = "Abort"; - private otherButtonTitle: string = null; - private validateButtonTitle: string = null; - private uploadDisplay: string = ""; - private sizeDisplay: string = ""; - private progress: number = 0; + public closeButtonTitle: string = "Abort"; + public otherButtonTitle: string = null; + public validateButtonTitle: string = null; + public uploadDisplay: string = ""; + public sizeDisplay: string = ""; + public progress: number = 0; constructor(private router: Router, private popInService: PopInService) {