Maike 2022-09-15 21:41:07 -03:00 committed by GitHub
parent 20c1febcef
commit 7ca1efd8c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -919,10 +919,10 @@ export default {
}
},
maxBoundry() {
return this.d_value >= this.max;
return this.d_value !== null && this.d_value >= this.max;
},
minBoundry() {
return this.d_value <= this.min;
return this.d_value !== null && this.d_value <= this.min;
},
},
computed: {