mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-12-15 21:29:33 +08:00
Fix consume modal zero consumption [SCI-11790]
This commit is contained in:
parent
5f05c8c21d
commit
b73405e76a
1 changed files with 1 additions and 1 deletions
|
|
@ -92,7 +92,7 @@ export default {
|
||||||
mixins: [modalMixin],
|
mixins: [modalMixin],
|
||||||
computed: {
|
computed: {
|
||||||
validConsume() {
|
validConsume() {
|
||||||
return this.newConsume.consume > 0;
|
return this.newConsume.consume >= 0;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue