From 19cec9d7db27b17d90325917b2c5600803ac228d Mon Sep 17 00:00:00 2001 From: Phan Huy Tran Date: Wed, 4 Jun 2025 09:32:46 +0200 Subject: [PATCH] fix: invalid pipe argument --- frontend/src/app/feature/home/home.component.html | 2 +- .../transaction-history/transaction-history.component.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/feature/home/home.component.html b/frontend/src/app/feature/home/home.component.html index fae788a..b0b77d3 100644 --- a/frontend/src/app/feature/home/home.component.html +++ b/frontend/src/app/feature/home/home.component.html @@ -81,7 +81,7 @@

{{ transaction.status }}

- {{ transaction.createdAt | date: 'd.m.Y H:m' }} + {{ transaction.createdAt | date: 'd.m.y H:m' }}

diff --git a/frontend/src/app/feature/transaction-history/transaction-history.component.html b/frontend/src/app/feature/transaction-history/transaction-history.component.html index 974964c..3e8aa00 100644 --- a/frontend/src/app/feature/transaction-history/transaction-history.component.html +++ b/frontend/src/app/feature/transaction-history/transaction-history.component.html @@ -22,7 +22,7 @@

{{ transaction.status }}

-

{{ transaction.createdAt | date: 'd.m.Y H:m' }}

+

{{ transaction.createdAt | date: 'd.m.y H:m' }}

{{ transaction.amount | currency: 'EUR' }}