diff --git a/src/frontend/src/components/layout/config/Property.vue b/src/frontend/src/components/layout/config/Property.vue index 66417b0..805cb49 100644 --- a/src/frontend/src/components/layout/config/Property.vue +++ b/src/frontend/src/components/layout/config/Property.vue @@ -178,15 +178,16 @@ export default { } if (this.property.data_type === 'INT') { - this.value = parseNumberFromString(this.value, 0); + this.value = parseNumberFromString(this.value, 0, true); } if (this.property.data_type === 'PERCENTAGE') { - this.value = parseNumberFromString(this.value, 4); + this.value = parseNumberFromString(this.value, 4, true); } if (this.property.data_type === 'CURRENCY') { - this.value = parseNumberFromString(this.value, 2); + this.value = parseNumberFromString(this.value, 2, true); + console.log(this.property.name, " parsed from 'currency' property: '", this.value, "'") } } }