Issue fixing + deletion of profile & logo
This commit is contained in:
@@ -126,7 +126,10 @@
|
||||
<span class="font-medium text-900 mb-2">Company Logo</span>
|
||||
<span class="font-medium text-xs mb-2">(is shown in every offer)</span>
|
||||
@if(user?.hasCompanyLogo){
|
||||
<img src="{{ companyLogoUrl }}" class="rounded-profile" />
|
||||
<div class="image-wrap">
|
||||
<img src="{{ companyLogoUrl }}" class="rounded-profile" />
|
||||
<fa-icon [icon]="faTrash" (click)="deleteConfirm('logo')"></fa-icon>
|
||||
</div>
|
||||
<!-- <img src="profile/{{ user.id }}.avif" class="rounded-profile" /> -->
|
||||
} @else {
|
||||
<img src="assets/images/placeholder.png" class="rounded-profile" />
|
||||
@@ -147,7 +150,10 @@
|
||||
<div class="flex flex-column align-items-center flex-or">
|
||||
<span class="font-medium text-900 mb-2">Your Profile Picture</span>
|
||||
@if(user?.hasProfile){
|
||||
<img src="{{ profileUrl }}" class="rounded-profile" />
|
||||
<div class="image-wrap">
|
||||
<img src="{{ profileUrl }}" class="rounded-profile" />
|
||||
<fa-icon [icon]="faTrash" (click)="deleteConfirm('profile')"></fa-icon>
|
||||
</div>
|
||||
} @else {
|
||||
<img src="assets/images/person_placeholder.jpg" class="rounded-profile" />
|
||||
}
|
||||
@@ -226,3 +232,4 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p-confirmDialog></p-confirmDialog>
|
||||
|
||||
Reference in New Issue
Block a user