From 666cfe1f7b38983cf572d2f5840d3d95446ab621 Mon Sep 17 00:00:00 2001
From: Jeremie BRISON <ext.sopra.jbrison@grandlyon.com>
Date: Wed, 3 Feb 2021 12:40:39 +0100
Subject: [PATCH] fix(form) : fix redirection confirmation

---
 src/app/form/form.component.ts | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/src/app/form/form.component.ts b/src/app/form/form.component.ts
index e2a9974e8..8eac73449 100644
--- a/src/app/form/form.component.ts
+++ b/src/app/form/form.component.ts
@@ -549,7 +549,12 @@ export class FormComponent implements OnInit {
   }
 
   public canExit(): Promise<boolean> {
-    return new Promise((resolve) => this.showModal(resolve));
+    // Avoid confirmation when user submit form and leave.
+    if (this.currentPage == this.nbPagesForm) {
+      return new Promise((resolve) => resolve(true));
+    } else {
+      return new Promise((resolve) => this.showModal(resolve));
+    }
   }
   public showConfirmationModal = false;
   private resolve: Function;
-- 
GitLab