Skip to content

Commit

Permalink
fix invalid res lookup for UpholdForm
Browse files Browse the repository at this point in the history
  • Loading branch information
woodser committed Jul 8, 2024
1 parent 5d39eec commit 31ce183
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public void addFormForEditAccount() {
addCompactTopLabelTextField(gridPane, ++gridRow, Res.get("shared.paymentMethod"),
Res.get(upholdAccount.getPaymentMethod().getId()));
addCompactTopLabelTextField(gridPane, ++gridRow, Res.get("payment.account.owner"),
Res.get(upholdAccount.getAccountOwner()));
upholdAccount.getAccountOwner());
TextField field = addCompactTopLabelTextField(gridPane, ++gridRow, Res.get("payment.uphold.accountId"),
upholdAccount.getAccountId()).second;
field.setMouseTransparent(false);
Expand Down

0 comments on commit 31ce183

Please sign in to comment.