Merge pull request #27 from cake-tech/CWA-170-fix-date-format-bug-for-exchange

CWA-170 | changed transaction date format and applied the same format…
This commit is contained in:
M 2020-02-04 22:24:16 +02:00
commit f5ac398f58

View file

@ -112,7 +112,7 @@ class DashboardPageBody extends StatefulWidget {
} }
class DashboardPageBodyState extends State<DashboardPageBody> { class DashboardPageBodyState extends State<DashboardPageBody> {
static final transactionDateFormat = DateFormat("MMM d, yyyy HH:mm"); static final transactionDateFormat = DateFormat("MMMM d, yyyy HH:mm");
final _connectionStatusObserverKey = GlobalKey(); final _connectionStatusObserverKey = GlobalKey();
final _balanceObserverKey = GlobalKey(); final _balanceObserverKey = GlobalKey();
@ -566,7 +566,7 @@ class DashboardPageBodyState extends State<DashboardPageBody> {
from: trade.from, from: trade.from,
to: trade.to, to: trade.to,
createdAtFormattedDate: createdAtFormattedDate:
DateFormat("dd.MM.yyyy, H:m").format(trade.createdAt), transactionDateFormat.format(trade.createdAt),
formattedAmount: formattedAmount); formattedAmount: formattedAmount);
} }