align extra info textarea in column for cash at atm buyer step

This commit is contained in:
woodser 2025-01-18 07:46:00 -05:00
parent 2d4455b1a2
commit a8fb638594

View file

@ -43,7 +43,7 @@ public class CashAtAtmForm extends PaymentMethodForm {
PaymentAccountPayload paymentAccountPayload) {
CashAtAtmAccountPayload cbm = (CashAtAtmAccountPayload) paymentAccountPayload;
TextArea textExtraInfo = addCompactTopLabelTextArea(gridPane, gridRow, 1, Res.get("payment.shared.extraInfo"), "").second;
TextArea textExtraInfo = addCompactTopLabelTextArea(gridPane, ++gridRow, 0, Res.get("payment.shared.extraInfo"), "").second;
textExtraInfo.setMinHeight(70);
textExtraInfo.setEditable(false);
textExtraInfo.setText(cbm.getExtraInfo());