Merge pull request #2981 from maikehenrique/patch-1

Issue correction #2980
pull/3732/head
Bahadır 2022-11-17 16:32:17 +03:00 committed by GitHub
commit 73b87577ca
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: {