mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-23 11:15:33 +00:00
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:
commit
f5ac398f58
1 changed files with 2 additions and 2 deletions
|
@ -112,7 +112,7 @@ class DashboardPageBody extends StatefulWidget {
|
|||
}
|
||||
|
||||
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 _balanceObserverKey = GlobalKey();
|
||||
|
@ -566,7 +566,7 @@ class DashboardPageBodyState extends State<DashboardPageBody> {
|
|||
from: trade.from,
|
||||
to: trade.to,
|
||||
createdAtFormattedDate:
|
||||
DateFormat("dd.MM.yyyy, H:m").format(trade.createdAt),
|
||||
transactionDateFormat.format(trade.createdAt),
|
||||
formattedAmount: formattedAmount);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue