mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 15:10:44 +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
|
@ -271,8 +271,8 @@ public abstract class MutableOfferViewModel<M extends MutableOfferDataModel> ext
|
|||
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.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