Skip to content
Snippets Groups Projects
Commit 666cfe1f authored by Jérémie BRISON's avatar Jérémie BRISON
Browse files

fix(form) : fix redirection confirmation

parent fa15a6fc
No related branches found
No related tags found
3 merge requests!68Recette,!67Dev,!66Fix/form design create structure
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment