parent
20c1febcef
commit
7ca1efd8c0
|
@ -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: {
|
||||
|
|
Loading…
Reference in New Issue