From 062b005a8a3b16c3bb1d73a473a173a445596396 Mon Sep 17 00:00:00 2001 From: Jeremie BRISON <ext.sopra.jbrison@grandlyon.com> Date: Thu, 4 Feb 2021 14:41:38 +0100 Subject: [PATCH] fix(form) : hide page (invite other person) --- src/app/form/form.component.html | 2 +- src/app/form/form.component.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/form/form.component.html b/src/app/form/form.component.html index cdfceb960..5b46183c2 100644 --- a/src/app/form/form.component.html +++ b/src/app/form/form.component.html @@ -929,7 +929,7 @@ le site des services et démarches en ligne dans la Métropole de Lyon </p> </div> - <div *ngIf="currentPage == 24" class="page"> + <div *ngIf="false" class="page"> <div class="title"> <h3>Voulez-vous inviter d’autres personnes dans cette structure ?</h3> <p class="notRequired">facultatif</p> diff --git a/src/app/form/form.component.ts b/src/app/form/form.component.ts index d8a2ef93f..0508a8b42 100644 --- a/src/app/form/form.component.ts +++ b/src/app/form/form.component.ts @@ -40,9 +40,9 @@ export class FormComponent implements OnInit { public trainingCategories: { category: Category; openned: boolean }[] = []; // Page and progress var - public currentPage = 17; + public currentPage = 0; public progressStatus = 0; - public nbPagesForm = 25; + public nbPagesForm = 24; public isPageValid: boolean; public pagesValidation = []; @@ -345,7 +345,7 @@ export class FormComponent implements OnInit { this.pagesValidation[21] = { valid: this.getStructureControl('description').valid }; this.pagesValidation[22] = { valid: this.getStructureControl('lockdownActivity').valid }; this.pagesValidation[23] = { valid: this.userAcceptSavedDate }; - this.pagesValidation[24] = { valid: true }; + //this.pagesValidation[24] = { valid: true }; this.updatePageValid(); } -- GitLab