Merge pull request #5015 from Jakub-CZ/fix-withdrawal-label

Fix missing apostrophe in Withdrawal view
This commit is contained in:
Christoph Atteneder 2020-12-29 19:57:02 +01:00 committed by GitHub
commit 30cfe5de7b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -269,8 +269,8 @@ public class WithdrawalView extends ActivatableView<VBox, Void> {
feeToggleGroupListener = (observable, oldValue, newValue) -> {
feeExcluded = newValue == feeExcludedRadioButton;
amountLabel.setText(feeExcluded ?
Res.get("funds.withdrawal.receiverAmount", Res.getBaseCurrencyCode()) :
Res.get("funds.withdrawal.senderAmount", Res.getBaseCurrencyCode()));
Res.get("funds.withdrawal.receiverAmount") :
Res.get("funds.withdrawal.senderAmount"));
};
}