From 1d225bc47980ec174a9d70523c3090e05cc36133 Mon Sep 17 00:00:00 2001
From: Pierre Ecarlat <pecarlat@grandlyon.com>
Date: Mon, 4 Mar 2024 15:08:08 +0100
Subject: [PATCH 1/2] Updated icons in profile's structures

---
 .../profile-structure.component.html                 | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/src/app/profile/profile-structure/profile-structure.component.html b/src/app/profile/profile-structure/profile-structure.component.html
index 42f65fba2..b07381063 100644
--- a/src/app/profile/profile-structure/profile-structure.component.html
+++ b/src/app/profile/profile-structure/profile-structure.component.html
@@ -88,18 +88,16 @@
       </div>
       <div class="sectionContent infoSection">
         <div class="row">
-          <app-svg-icon [iconClass]="'icon-20'" [folder]="'ico'" [icon]="'address'" />
+          <app-svg-icon [iconClass]="'icon-20'" [folder]="'tags'" [icon]="'address'" />
           <p>{{ getAddress() }}</p>
         </div>
         <div *ngIf="structure.contactPhone" class="row">
-          <app-svg-icon [iconClass]="'icon-20'" [folder]="'ico'" [icon]="'phone'" />
-          <p>{{ structure.contactPhone | phone }}</p>
+          <app-svg-icon [iconClass]="'icon-20'" [folder]="'tags'" [icon]="'phone'" />
+          <div>{{ structure.contactPhone | phone }}</div>
         </div>
         <div *ngIf="structure.contactMail" class="row">
-          <app-svg-icon [iconClass]="'icon-20'" [folder]="'ico'" [icon]="'mail'" />
-          <a class="email" href="mailto:{{ structure.contactMail }}">
-            {{ structure.contactMail }}
-          </a>
+          <app-svg-icon [iconClass]="'icon-20'" [folder]="'tags'" [icon]="'mail'" />
+          <a href="mailto:{{ structure.contactMail }}">{{ structure.contactMail }}</a>
         </div>
       </div>
     </div>
-- 
GitLab


From ef3c4edace713f0aeaf1cd53145b96623e908bf3 Mon Sep 17 00:00:00 2001
From: Pierre Ecarlat <pecarlat@grandlyon.com>
Date: Mon, 4 Mar 2024 17:24:00 +0100
Subject: [PATCH 2/2] Removed useless div

---
 .../profile-structure/profile-structure.component.html        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/app/profile/profile-structure/profile-structure.component.html b/src/app/profile/profile-structure/profile-structure.component.html
index b07381063..804302d5d 100644
--- a/src/app/profile/profile-structure/profile-structure.component.html
+++ b/src/app/profile/profile-structure/profile-structure.component.html
@@ -89,11 +89,11 @@
       <div class="sectionContent infoSection">
         <div class="row">
           <app-svg-icon [iconClass]="'icon-20'" [folder]="'tags'" [icon]="'address'" />
-          <p>{{ getAddress() }}</p>
+          {{ getAddress() }}
         </div>
         <div *ngIf="structure.contactPhone" class="row">
           <app-svg-icon [iconClass]="'icon-20'" [folder]="'tags'" [icon]="'phone'" />
-          <div>{{ structure.contactPhone | phone }}</div>
+          {{ structure.contactPhone | phone }}
         </div>
         <div *ngIf="structure.contactMail" class="row">
           <app-svg-icon [iconClass]="'icon-20'" [folder]="'tags'" [icon]="'mail'" />
-- 
GitLab