diff --git a/client/src/views/fields/float.js b/client/src/views/fields/float.js index a8b33704ce..5506127d03 100644 --- a/client/src/views/fields/float.js +++ b/client/src/views/fields/float.js @@ -60,6 +60,14 @@ define('views/fields/float', ['views/fields/int'], function (Dep) { else if (this.getConfig().has('decimalMark')) { this.decimalMark = this.getConfig().get('decimalMark'); } + + if (!this.decimalMark) { + this.decimalMark = '.'; + } + + if (this.decimalMark === this.thousandSeparator) { + this.thousandSeparator = ''; + } }, /**