mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
Merge pull request #5015 from Jakub-CZ/fix-withdrawal-label
Fix missing apostrophe in Withdrawal view
This commit is contained in:
commit
30cfe5de7b
1 changed files with 2 additions and 2 deletions
|
@ -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"));
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue