Hello, when selecting a decimal value it is always converted to an integer value
I find this in interface.vue
if (['integer', 'decimal', 'bigInteger'].includes(props.type)) {
return parseInt(res) || 0;
}
if (['float'].includes(props.type)) {
return parseFloat(res) || 0;
}
I hope it is helpful, thank you
Hello, when selecting a decimal value it is always converted to an integer value
I find this in interface.vue
if (['integer', 'decimal', 'bigInteger'].includes(props.type)) {
return parseInt(res) || 0;
}
if (['float'].includes(props.type)) {
return parseFloat(res) || 0;
}
I hope it is helpful, thank you