fix: check for the route if 0 value is entered
When 0 value was entered checking for the best route was not done cause the amount change signal was not emitted.
This commit is contained in:
parent
4206617d9e
commit
7ba325984c
|
@ -537,6 +537,11 @@ StatusDialog {
|
|||
formatBalance: amount => d.currencyStore.formatCurrencyAmount(
|
||||
amount, selectedSymbol)
|
||||
|
||||
onValidChanged: {
|
||||
d.sendError = ""
|
||||
popup.recalculateRoutesAndFees()
|
||||
}
|
||||
|
||||
onAmountChanged: {
|
||||
d.sendError = ""
|
||||
popup.recalculateRoutesAndFees()
|
||||
|
|
Loading…
Reference in New Issue