Skip to content

Commit

Permalink
Fix a bug where "Message" was not shown on profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
sondreb committed Nov 4, 2024
1 parent 015c51f commit a1afb09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/app/profile/profile.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ <h1>
{{ data().profile.name }}
@if(data().profile.title) {
<span>({{ data().profile.title }})</span>
} @if (data().did !== this.identity.did) { @if (layout.tiny()) { @if (!data().friend) {

@if (data().did !== this.identity.did) { @if (layout.tiny()) { @if (!data().friend) {
<button class="icon-button" mat-icon-button (click)="addFriend(data().did)">
<mat-icon>person_add</mat-icon>
</button>
Expand All @@ -34,7 +34,7 @@ <h1>
<mat-icon>chat_bubble</mat-icon>
Message
</button>
} } } }
} } }

<button mat-icon-button [matMenuTriggerFor]="menuProfile">
<mat-icon>more_vert</mat-icon>
Expand Down

0 comments on commit a1afb09

Please sign in to comment.