mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
Merge branch 'master' into logger_transactionLinkResolver
This commit is contained in:
commit
ef1c436132
@ -179,6 +179,17 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
disabled() {
|
||||||
|
if (
|
||||||
|
this.form.email.length > 5 &&
|
||||||
|
parseInt(this.form.amount) <= parseInt(this.balance) &&
|
||||||
|
this.form.memo.length > 5 &&
|
||||||
|
this.form.memo.length <= 255
|
||||||
|
) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
},
|
||||||
isBalanceDisabled() {
|
isBalanceDisabled() {
|
||||||
return this.balance <= 0 ? 'disabled' : false
|
return this.balance <= 0 ? 'disabled' : false
|
||||||
},
|
},
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user