From 2e15ee6ccfd0653b391ae582a28d794cb11ef774 Mon Sep 17 00:00:00 2001
From: Jeremie BRISON <ext.sopra.jbrison@grandlyon.com>
Date: Thu, 4 Feb 2021 14:47:08 +0100
Subject: [PATCH] fix(form): fix progress 100% on validate Mail

---
 src/app/form/form.component.ts | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/app/form/form.component.ts b/src/app/form/form.component.ts
index 0508a8b42..9d4194885 100644
--- a/src/app/form/form.component.ts
+++ b/src/app/form/form.component.ts
@@ -527,6 +527,7 @@ export class FormComponent implements OnInit {
   private createStructure(structure: Structure, user: User): void {
     this.structureService.createStructure(structure, user).subscribe((structure) => {
       this.currentPage++;
+      this.progressStatus += 100 / this.nbPagesForm;
       this.createdStructure = structure;
     });
   }
-- 
GitLab