fix bug with checker in payments modal

This commit is contained in:
Kostya
2023-12-13 23:53:59 +03:00
parent de8aacbc3d
commit 74b543afe7

View File

@@ -64,7 +64,7 @@ export default {
watch: {
amount(newAmount) {
console.log(newAmount)
if (!this.amount < 0 && this.amount !== '' ) {
if (this.amount > 0 && this.amount !== '' ) {
this.offBtn = true
console.log('OFFBTN', this.offBtn)
setTimeout(() => {