mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 07:07:43 +01:00
Fix incorrect volume binding for buy offers
This commit is contained in:
parent
1cf03ca9d5
commit
575c085600
1 changed files with 3 additions and 3 deletions
|
@ -270,9 +270,9 @@ public abstract class MutableOfferViewModel<M extends MutableOfferDataModel> ext
|
|||
if (dataModel.getDirection() == OfferDirection.BUY) {
|
||||
volumeDescriptionLabel.bind(createStringBinding(
|
||||
() -> Res.get(CurrencyUtil.isFiatCurrency(dataModel.getTradeCurrencyCode().get()) ?
|
||||
"createOffer.amountPriceBox.buy.volumeDescription" :
|
||||
"createOffer.amountPriceBox.buy.volumeDescriptionAltcoin", dataModel.getTradeCurrencyCode().get(),
|
||||
dataModel.getTradeCurrencyCode())));
|
||||
"createOffer.amountPriceBox.buy.volumeDescription" :
|
||||
"createOffer.amountPriceBox.buy.volumeDescriptionAltcoin", dataModel.getTradeCurrencyCode().get()),
|
||||
dataModel.getTradeCurrencyCode()));
|
||||
} else {
|
||||
volumeDescriptionLabel.bind(createStringBinding(
|
||||
() -> Res.get(CurrencyUtil.isFiatCurrency(dataModel.getTradeCurrencyCode().get()) ?
|
||||
|
|
Loading…
Add table
Reference in a new issue