mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-12-10 14:16:28 +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],
|
||||
computed: {
|
||||
validConsume() {
|
||||
return this.newConsume.consume > 0;
|
||||
return this.newConsume.consume >= 0;
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue