From 52bffaf9ecb5a2838344eb929352e78edcc8808e Mon Sep 17 00:00:00 2001
From: wwang <wwang.works@gmail.com>
Date: Wed, 9 Dec 2020 10:44:43 +0100
Subject: [PATCH] [FIX TRTL-555] Fix placeholders of search bar

---
 .../projects/identity/src/app/customer/customer.component.html  | 2 +-
 .../projects/identity/src/app/group/group.component.html        | 2 +-
 .../identity/src/app/hierarchy/hierarchy.component.html         | 2 +-
 .../projects/identity/src/app/profile/profile.component.html    | 2 +-
 .../subrogation/subrogate-user/subrogate-user.component.html    | 2 +-
 .../projects/identity/src/app/user/user.component.html          | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/ui/ui-frontend/projects/identity/src/app/customer/customer.component.html b/ui/ui-frontend/projects/identity/src/app/customer/customer.component.html
index 31a8da97b..d48705f7d 100644
--- a/ui/ui-frontend/projects/identity/src/app/customer/customer.component.html
+++ b/ui/ui-frontend/projects/identity/src/app/customer/customer.component.html
@@ -11,7 +11,7 @@
     </vitamui-common-title-breadcrumb>
 
     <vitamui-common-banner
-      [searchbarPlaceholder]="'Nom, raison sociale, code client, adresse...'"
+      [searchbarPlaceholder]="'Nom, Raison sociale, Code client, Adresse...'"
       [disableSearchBar]="true">
         <button class="btn primary ml-5" (click)="openCreateCustomerDialog()">
           <span>Créer un Client</span>
diff --git a/ui/ui-frontend/projects/identity/src/app/group/group.component.html b/ui/ui-frontend/projects/identity/src/app/group/group.component.html
index e931ab7e8..ca5da8006 100644
--- a/ui/ui-frontend/projects/identity/src/app/group/group.component.html
+++ b/ui/ui-frontend/projects/identity/src/app/group/group.component.html
@@ -9,7 +9,7 @@
     </vitamui-common-title-breadcrumb>
     
     <vitamui-common-banner
-      [searchbarPlaceholder]="'Nom de Profil Administrateur'"
+      [searchbarPlaceholder]="'Nom du groupe, Identifiant'"
       (search)="onSearchSubmit($event)">
         <button class="btn primary ml-5" (click)="openCreateGroupDialog()">
           <span>Créer un Groupe</span>
diff --git a/ui/ui-frontend/projects/identity/src/app/hierarchy/hierarchy.component.html b/ui/ui-frontend/projects/identity/src/app/hierarchy/hierarchy.component.html
index ad43761b5..f059fdc7d 100644
--- a/ui/ui-frontend/projects/identity/src/app/hierarchy/hierarchy.component.html
+++ b/ui/ui-frontend/projects/identity/src/app/hierarchy/hierarchy.component.html
@@ -13,7 +13,7 @@
     </vitamui-common-title-breadcrumb>
 
     <vitamui-common-banner
-      [searchbarPlaceholder]="'Nom de Profil'"
+      [searchbarPlaceholder]="'Nom du profil, Identifiant'"
       (search)="onSearchSubmit($event)"
     >
       <button class="btn primary ml-5" (click)="openHierarchyDuplicateDialog()">
diff --git a/ui/ui-frontend/projects/identity/src/app/profile/profile.component.html b/ui/ui-frontend/projects/identity/src/app/profile/profile.component.html
index 8532e54f8..d771a1e00 100644
--- a/ui/ui-frontend/projects/identity/src/app/profile/profile.component.html
+++ b/ui/ui-frontend/projects/identity/src/app/profile/profile.component.html
@@ -9,7 +9,7 @@
     </vitamui-common-title-breadcrumb>
 
     <vitamui-common-banner
-      [searchbarPlaceholder]="'Nom de Profil Administrateur'"
+      [searchbarPlaceholder]="'Nom du profil administrateur, Identifiant'"
       (search)="onSearchSubmit($event)">
         <button class="btn primary ml-5" (click)="openProfilAdminCreateDialog()">
           <span>Créer un Profil Administrateur</span>
diff --git a/ui/ui-frontend/projects/identity/src/app/subrogation/subrogate-user/subrogate-user.component.html b/ui/ui-frontend/projects/identity/src/app/subrogation/subrogate-user/subrogate-user.component.html
index 7d3251d56..eb3c6cce4 100644
--- a/ui/ui-frontend/projects/identity/src/app/subrogation/subrogate-user/subrogate-user.component.html
+++ b/ui/ui-frontend/projects/identity/src/app/subrogation/subrogate-user/subrogate-user.component.html
@@ -5,7 +5,7 @@
     </vitamui-common-title-breadcrumb>
 
     <vitamui-common-banner
-      [searchbarPlaceholder]="'Nom de Profil de Subrogation'"
+      [searchbarPlaceholder]="'Utilisateur, Admin'"
       (search)="onSearchSubmit($event)">
         <button class="btn primary ml-5" (click)="openUserSubrogationDialog()">
           Subroger un Utilisateur Client
diff --git a/ui/ui-frontend/projects/identity/src/app/user/user.component.html b/ui/ui-frontend/projects/identity/src/app/user/user.component.html
index 49dd03b88..2ca6bca72 100644
--- a/ui/ui-frontend/projects/identity/src/app/user/user.component.html
+++ b/ui/ui-frontend/projects/identity/src/app/user/user.component.html
@@ -8,7 +8,7 @@
       Administrer mes utilisateurs
     </vitamui-common-title-breadcrumb>
 
-    <vitamui-common-banner [searchbarPlaceholder]="'Nom,  Prénom, N° d \'identifiant, groupe'" i18n-placeholder="@@userSearchPlaceholder" (search)="onSearchSubmit($event)">
+    <vitamui-common-banner [searchbarPlaceholder]="'Nom, Prénom, Identifiant, Email'" i18n-placeholder="@@userSearchPlaceholder" (search)="onSearchSubmit($event)">
       <button class="btn primary" (click)="openCreateUserDialog()" [disabled]="!connectedUserInfo.createUser">
         <span>Créer un Utilisateur</span>
       </button>
-- 
GitLab