BUG 30961
This commit is contained in:
@@ -228,7 +228,7 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
formatValue(v) {
|
formatValue(v) {
|
||||||
return v?.toString()?.replace(/(\.\d).*/g,'$1') || v
|
return isNaN(v) ? v : (Number(v)?.toFixed(1) || v)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
|||||||
Reference in New Issue
Block a user