mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
Merge branch 'CWA-170-fix-date-format-bug-for-exchange' of github.com:cake-tech/cake_wallet into release-1.0.3
This commit is contained in:
commit
405644ab5c
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