Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
issue2880: replace four stars as hiding balance charcatars to one star (
Browse files Browse the repository at this point in the history
#2882)

Co-authored-by: a <a>
  • Loading branch information
backendan authored Jan 19, 2024
1 parent 4d554f0 commit f2f7ad1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ fun BalanceRow(
}
Text(
text = when {
hiddenMode -> "****"
hiddenMode -> "*"
balanceAmountPrefix != null -> "$balanceAmountPrefix$integerPartFormatted"
else -> integerPartFormatted
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ fun AmountCurrencyB1(
) {
val shortAmount = shortenBigNumbers && shouldShortAmount(amount)
val text = if (hideIncome) {
"****"
"*"
} else {
if (shortAmount) shortenAmount(amount) else amount.format(currency)
}
Expand Down

0 comments on commit f2f7ad1

Please sign in to comment.