Skip to content

Commit

Permalink
fix chat avatar bug
Browse files Browse the repository at this point in the history
  • Loading branch information
axherrm committed Feb 2, 2024
1 parent e948d4d commit fa31fd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/components/chat-row/chat-row.component.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="img-container" [class.hidden]="followingMessage">
<img *ngIf="isLeft()" src="../../../assets/chat-avatar/avatar.png" height="210" width="210" alt="">
<img *ngIf="!isLeft()" src="../../../assets/chat-avatar/anonymous.svg" alt="">
<img *ngIf="isLeft()" src="assets/chat-avatar/avatar.png" height="210" width="210" alt="">
<img *ngIf="!isLeft()" src="assets/chat-avatar/anonymous.svg" alt="">
</div>
<!--<div class="triangle background-gradient"></div>-->
<div class="fake-triangle" [class.hidden]="followingMessage" [class.not-received]="!sent"></div>
Expand Down

0 comments on commit fa31fd5

Please sign in to comment.