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

Merge branch 'fix/remove-profil-picture' into 'dev'

fix: remove profil picture from profil page

See merge request web-et-numerique/pamn_plateforme-des-acteurs-de-la-mediation-numerique/pamn_client!97
parents 7623db7a 645450e5
Branches
Tags
3 merge requests!103Recette,!102Dev,!97fix: remove profil picture from profil page
......@@ -10,6 +10,7 @@ export class User {
validationToken: string;
structuresLink: string[];
pendingStructuresLink: string[] = [];
profileImage: string;
constructor(obj?: any) {
Object.assign(this, obj);
......
<div fxLayout="column" class="content-container full-screen" *ngIf="userProfile">
<div class="profileSection">
<div class="section-container" fxLayout="row">
<svg class="cameraProfile" aria-hidden="true">
<use [attr.xlink:href]="'assets/ico/sprite.svg#camera'"></use>
</svg>
<ng-container *ngIf="userProfile.profileImage">
<img class="cameraProfile" src="userProfile.profileImage">
</ng-container>
<div class="profileInformation" fxLayoutGap="18px" fxLayout="column">
<div fxLayout="row" fxLayoutAlign="space-between center">
<p class="profileName">{{ userProfile.name | titlecase }} {{ userProfile.surname | titlecase }}</p>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment