Skip to content

Commit

Permalink
Merge pull request #1628 from runbox/shadowbas/fix-account-details-ph…
Browse files Browse the repository at this point in the history
…one-icon-so-it-does-not-use-email-icon

fix(account-details): Use phone icon instead of email icon near phone
  • Loading branch information
castaway authored Nov 20, 2024
2 parents c571407 + 69be618 commit 1ea246b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/account-details/personal-details.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ <h2><strong>Personal Details</strong></h2>
<mat-form-field>
<mat-label>Alternative email address</mat-label>
<input type="email" matInput formControlName="email_alternative">
<mat-icon matSuffix *ngIf="is_alternative_email_validated" svgIcon="check-bold" matTooltip="Alternative email address is validated"></mat-icon>
<mat-icon matSuffix *ngIf="!is_alternative_email_validated" svgIcon="email-arrow-right" matTooltip="Resend alternative email address validation" (click)="validate_alt_email()"></mat-icon>
</mat-form-field>
<mat-icon *ngIf="is_alternative_email_validated" svgIcon="check-bold" matTooltip="Alternative email address is validated"></mat-icon>
<mat-icon *ngIf="!is_alternative_email_validated" svgIcon="email-arrow-right" matTooltip="Resend alternative email address validation" (click)="validate_alt_email()"></mat-icon>
<mat-form-field>
<mat-label>Phone number (optional)</mat-label>
<input type="tel" matInput formControlName="phone_number">
Expand Down

0 comments on commit 1ea246b

Please sign in to comment.