| @@ -19,6 +19,9 @@ | |||||
| src="{{contact.imageUrl}}" width="247" height="94" | src="{{contact.imageUrl}}" width="247" height="94" | ||||
| alt="{{contact.firstName}} {{contact.lastName}}" | alt="{{contact.firstName}} {{contact.lastName}}" | ||||
| title="{{contact.firstName}} {{contact.lastName}}" /> | title="{{contact.firstName}} {{contact.lastName}}" /> | ||||
| <img *ngIf="contact.imageUrl === null || contact.imageUrl === undefined" | |||||
| src="/assets/images/icons/dummy-person.png" width="247" height="94" | |||||
| alt="" /> | |||||
| </div> | </div> | ||||
| <div class="col-8"> | <div class="col-8"> | ||||
| <h3>{{ contact.firstName }} {{ contact.lastName }}</h3> | <h3>{{ contact.firstName }} {{ contact.lastName }}</h3> | ||||
| @@ -27,6 +27,8 @@ | |||||
| <div class="col-12 col-sm-6 col-lg-4 has-image"> | <div class="col-12 col-sm-6 col-lg-4 has-image"> | ||||
| <img *ngIf="contact.imageUrl !== null && contact.imageUrl !== undefined" src="{{contact.imageUrl}}" width="247" height="94" | <img *ngIf="contact.imageUrl !== null && contact.imageUrl !== undefined" src="{{contact.imageUrl}}" width="247" height="94" | ||||
| alt="{{contact.firstName}} {{contact.lastName}}" title="{{contact.firstName}} {{contact.lastName}}" /> | alt="{{contact.firstName}} {{contact.lastName}}" title="{{contact.firstName}} {{contact.lastName}}" /> | ||||
| <img *ngIf="contact.imageUrl === null || contact.imageUrl === undefined" | |||||
| src="/assets/images/icons/dummy-person.png" width="247" height="94" alt="" /> | |||||
| </div> | </div> | ||||
| <span class="position-absolute bi bi-pencil p-2" data-type="user-tool" data-action="edit" | <span class="position-absolute bi bi-pencil p-2" data-type="user-tool" data-action="edit" | ||||
| (click)="openModalEditContact()"> | (click)="openModalEditContact()"> | ||||
| @@ -34,8 +34,10 @@ | |||||
| {{ 'overview.logo' | translate }} | {{ 'overview.logo' | translate }} | ||||
| </th> | </th> | ||||
| <td mat-cell *matCellDef="let element"> | <td mat-cell *matCellDef="let element"> | ||||
| <img src="{{ element.logoUrl }}" width="40" | |||||
| height="40" /> | |||||
| <img *ngIf="element.logoUrl !== null && element.logoUrl !== undefined" | |||||
| src="{{ element.logoUrl }}" alt="" width="40" height="40" /> | |||||
| <img *ngIf="element.logoUrl === null || element.logoUrl === undefined" | |||||
| src="/assets/images/icons/dummy-company.png" width="40" height="40" alt="" /> | |||||
| </td> | </td> | ||||
| </ng-container> | </ng-container> | ||||
| @@ -38,6 +38,8 @@ | |||||
| <img *ngIf="partner.logoUrl !== null && partner.logoUrl !== undefined" src="{{partner.logoUrl}}" | <img *ngIf="partner.logoUrl !== null && partner.logoUrl !== undefined" src="{{partner.logoUrl}}" | ||||
| width="247" | width="247" | ||||
| height="94" alt="{{partner.name}}" title="{{partner.name}}" /> | height="94" alt="{{partner.name}}" title="{{partner.name}}" /> | ||||
| <img *ngIf="partner.logoUrl === null || partner.logoUrl === undefined" | |||||
| src="/assets/images/icons/dummy-company.png" width="247" height="94" alt="" /> | |||||
| </div> | </div> | ||||
| <span class="position-absolute bi p-2" | <span class="position-absolute bi p-2" | ||||
| [class.bi-heart]="partnerFollow === null" | [class.bi-heart]="partnerFollow === null" | ||||
| @@ -36,7 +36,10 @@ | |||||
| {{ 'overview.image' | translate }} | {{ 'overview.image' | translate }} | ||||
| </th> | </th> | ||||
| <td mat-cell *matCellDef="let element"> | <td mat-cell *matCellDef="let element"> | ||||
| <img src="{{element.imageUrl}}" width="40" height="40"/> | |||||
| <img *ngIf="element.imageUrl !== null && element.imageUrl !== undefined" | |||||
| src="{{element.imageUrl}}" width="40" height="40"/> | |||||
| <img *ngIf="element.imageUrl === null || element.imageUrl === undefined" | |||||
| src="/assets/images/icons/dummy-product.png" width="40" height="40" alt="" /> | |||||
| </td> | </td> | ||||
| </ng-container> | </ng-container> | ||||
| @@ -21,6 +21,8 @@ | |||||
| <img *ngIf="product.imageUrl !== null && product.imageUrl !== undefined" | <img *ngIf="product.imageUrl !== null && product.imageUrl !== undefined" | ||||
| src="{{product.imageUrl}}" width="247" height="94" | src="{{product.imageUrl}}" width="247" height="94" | ||||
| alt="{{product.name}}" title="{{product.name}}" /> | alt="{{product.name}}" title="{{product.name}}" /> | ||||
| <img *ngIf="product.imageUrl === null || product.imageUrl === undefined" | |||||
| src="/assets/images/icons/dummy-product.png" width="247" height="94" alt="" /> | |||||
| </div> | </div> | ||||
| <span class="position-absolute bi p-2" | <span class="position-absolute bi p-2" | ||||
| [class.bi-heart]="userProduct === null" | [class.bi-heart]="userProduct === null" | ||||