Skip to content

Commit

Permalink
Merge pull request #1125 from eclipse-tractusx/chore/753-update-notif…
Browse files Browse the repository at this point in the history
…ication-message-history

chore(messages): 753 correctly display messages
  • Loading branch information
ds-mwesener authored Jun 27, 2024
2 parents f3a3c4d + a65ee3e commit 34f3d7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<ng-template #chatBubble let-message="message" let-lastDate="lastDate" let-isFirst="isFirst">
<ng-container>
<div class="message--separator" *ngIf="isFirst || (!isFirst && lastDate && !isSameDay(lastDate, message.date))">
{{ message.date | date:'mediumDate' }}
{{ message.date | formatDate : { dateStyle: 'long' } }}
</div>
<div class="message--text message--text__{{ message.direction }} message--text-arrow__{{ message.direction }}"
[class.self-start]="message.direction === 'left'" [class.self-end]="message.direction === 'right'">
Expand Down

0 comments on commit 34f3d7b

Please sign in to comment.