- Togliere la terza cifra nell'invio dei RIS... massimo 0.99
This commit is contained in:
@@ -282,7 +282,8 @@ export default defineComponent({
|
||||
qty.value = props.qtydefault
|
||||
|
||||
if (props.sendRIS) {
|
||||
qty.value = props.sendRIS
|
||||
if (props.sendRIS !== '0')
|
||||
qty.value = props.sendRIS
|
||||
}
|
||||
|
||||
await aggiorna()
|
||||
@@ -403,7 +404,7 @@ export default defineComponent({
|
||||
}
|
||||
|
||||
function checkRisValid() {
|
||||
return qty.value ? qty.value && getQty() > 0.01 && accountloaded.value
|
||||
return qty.value ? qty.value && getQty() >= 0.01 && accountloaded.value
|
||||
&& getQty() <= circuitStore.getRemainingCoinsToSend(accountloaded.value) : false
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user