Showing zap amounts with correct scale.

This commit is contained in:
Vitor Pamplona
2023-02-23 21:47:12 -05:00
parent 7acb735151
commit 2e1b141e38

View File

@@ -447,7 +447,7 @@ private fun ZapAmountChoicePopup(baseNote: Note, accountViewModel: AccountViewMo
backgroundColor = MaterialTheme.colors.primary backgroundColor = MaterialTheme.colors.primary
) )
) { ) {
Text("${showAmount(amountInSats.toBigDecimal())}", Text("${showAmount(amountInSats.toBigDecimal().setScale(1))}",
color = Color.White, color = Color.White,
textAlign = TextAlign.Center, textAlign = TextAlign.Center,
modifier = Modifier.combinedClickable( modifier = Modifier.combinedClickable(
@@ -572,7 +572,7 @@ fun UpdateZapAmountDialog(onClose: () -> Unit, account: Account) {
postViewModel.removeAmount(amountInSats) postViewModel.removeAmount(amountInSats)
} }
) { ) {
Text("${showAmount(amountInSats.toBigDecimal())}", color = Color.White, textAlign = TextAlign.Center) Text("${showAmount(amountInSats.toBigDecimal().setScale(1))}", color = Color.White, textAlign = TextAlign.Center)
} }
} }
} }