mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
fix empty comment on zano transaction [skip ci]
This commit is contained in:
parent
141a7ebfca
commit
f90b171d9b
1 changed files with 1 additions and 1 deletions
|
@ -795,7 +795,7 @@ abstract class TransactionDetailsViewModelBase with Store {
|
||||||
StandartListItem(title: S.current.transaction_details_amount, value: tx.amountFormatted()),
|
StandartListItem(title: S.current.transaction_details_amount, value: tx.amountFormatted()),
|
||||||
if (tx.feeFormatted()?.isNotEmpty ?? false)
|
if (tx.feeFormatted()?.isNotEmpty ?? false)
|
||||||
StandartListItem(title: S.current.transaction_details_fee, value: tx.feeFormatted()!),
|
StandartListItem(title: S.current.transaction_details_fee, value: tx.feeFormatted()!),
|
||||||
if (comment != null)
|
if (comment != null && comment.isNotEmpty)
|
||||||
StandartListItem(title: S.current.transaction_details_title, value: comment),
|
StandartListItem(title: S.current.transaction_details_title, value: comment),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue