Merge pull request 'fix: invalid pipe argument' (!279) from fix-transaction-date into main
All checks were successful
Release / Release (push) Successful in 59s
Release / Build Backend Image (push) Successful in 25s
Release / Build Frontend Image (push) Successful in 28s

Reviewed-on: #279
Reviewed-by: Jan K9f <jan@kjan.email>
This commit is contained in:
Phan Huy Tran 2025-06-04 07:35:42 +00:00
commit feb67c708e
No known key found for this signature in database
GPG key ID: 944223E4D46B7412
2 changed files with 2 additions and 2 deletions

View file

@ -81,7 +81,7 @@
<div>
<p class="text-sm font-medium">{{ transaction.status }}</p>
<p class="text-xs text-text-secondary">
{{ transaction.createdAt | date: 'd.m.Y H:m' }}
{{ transaction.createdAt | date: 'd.m.y H:m' }}
</p>
</div>
<span [class]="transaction.amount > 0 ? 'text-emerald' : 'text-accent-red'">

View file

@ -22,7 +22,7 @@
<div class="flex justify-between items-center mb-4">
<div>
<p class="text-sm font-medium">{{ transaction.status }}</p>
<p class="text-xs text-text-secondary">{{ transaction.createdAt | date: 'd.m.Y H:m' }}</p>
<p class="text-xs text-text-secondary">{{ transaction.createdAt | date: 'd.m.y H:m' }}</p>
</div>
<span [class]="transaction.amount > 0 ? 'text-emerald' : 'text-accent-red'">
{{ transaction.amount | currency: 'EUR' }}