Check if isNaN so we don't ignore value of zero

This commit is contained in:
Sergio Crisostomo 2017-09-29 08:43:33 +02:00
parent 4ef54c6ea9
commit 815f835479

View file

@ -220,7 +220,7 @@
},
setValue (val) {
// step precision
if (this.precision) val = Number(Number(val).toFixed(this.precision));
if (!isNaN(this.precision)) val = Number(Number(val).toFixed(this.precision));
this.$nextTick(() => {
this.currentValue = val;