From 6ccd6e2d37283e4086c931f638751ca148bf9dad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Pailharey?= <rpailharey@grandlyon.com> Date: Thu, 8 Sep 2022 14:30:23 +0200 Subject: [PATCH] fix: wording and typos --- .../structure-hours.component.html | 2 +- ...cture-web-and-social-network.component.html | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/app/form/form-view/structure-form/structure-hours/structure-hours.component.html b/src/app/form/form-view/structure-form/structure-hours/structure-hours.component.html index 3f2ae9fc9..13d75a6a2 100644 --- a/src/app/form/form-view/structure-form/structure-hours/structure-hours.component.html +++ b/src/app/form/form-view/structure-form/structure-hours/structure-hours.component.html @@ -26,7 +26,7 @@ <div class="textareaBlock" fxLayout="column"> <textarea rows="8" - placeholder="Exemple : nous ne sommes ouvert que le 1er mercredi du mois." + placeholder="Exemple : nous ne sommes ouverts que le 1er mercredi du mois." maxlength="500" formControlName="exceptionalClosures" ></textarea> diff --git a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html index 9ab721daf..0109087fd 100644 --- a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html +++ b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html @@ -8,7 +8,7 @@ [icon]="'arrowBack'" ></app-svg-icon> <div class="titleContent"> - <h3>Comment vous trouver la structure sur internet ?</h3> + <h3>Votre présence sur internet et les réseaux sociaux</h3> <p>Facultatif</p> </div> </div> @@ -94,8 +94,8 @@ <app-svg-icon *ngIf=" structureForm.get('facebook').valid && - structureForm.get('facebook').value != null && - structureForm.get('facebook').value != '' + structureForm.get('facebook').value !== null && + structureForm.get('facebook').value !== '' " [iconClass]="'icon-26'" [type]="'form'" @@ -126,8 +126,8 @@ <app-svg-icon *ngIf=" structureForm.get('twitter').valid && - structureForm.get('twitter').value != null && - structureForm.get('twitter').value != '' + structureForm.get('twitter').value !== null && + structureForm.get('twitter').value !== '' " [iconClass]="'icon-26'" [type]="'form'" @@ -159,8 +159,8 @@ <app-svg-icon *ngIf=" structureForm.get('instagram').valid && - structureForm.get('instagram').value != null && - structureForm.get('instagram').value != '' + structureForm.get('instagram').value !== null && + structureForm.get('instagram').value !== '' " [iconClass]="'icon-26'" [type]="'form'" @@ -191,8 +191,8 @@ <app-svg-icon *ngIf=" structureForm.get('linkedin').valid && - structureForm.get('linkedin').value != null && - structureForm.get('linkedin').value != '' + structureForm.get('linkedin').value !== null && + structureForm.get('linkedin').value !== '' " [iconClass]="'icon-26'" [type]="'form'" -- GitLab