commit 62fbc8147cdb92513491b1347c75af7332b12bb1
parent 3245ce730e3bf0e304b2f9c961245cc56224c4f4
Author: Marc Stibane <marc@taler.net>
Date: Sat, 6 Jun 2026 01:06:36 +0200
scope
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/TalerWallet1/Views/Sheets/Payment/ChoicesView.swift b/TalerWallet1/Views/Sheets/Payment/ChoicesView.swift
@@ -37,12 +37,13 @@ struct ChoicesView: View, Sendable {
let contractChoice: ContractChoice = choice.1
let index: Int = choice.2
let isPaymentPossible = selectionDetail.status == .paymentPossible
+ let scopeInfo = selectionDetail.scopeInfo
if let description = contractChoice.description {
Section(header: Text(description)) {
let amountV = HStack {
Spacer()
AmountV(stack: stack.push(),
- scope: nil,
+ scope: scopeInfo,
amount: contractChoice.amount)
.foregroundColor(isPaymentPossible ? .primary : .secondary )
} .overlay {