diff --git a/front/core/components/input-number/index.js b/front/core/components/input-number/index.js index b5762d0cca..9c187a8151 100644 --- a/front/core/components/input-number/index.js +++ b/front/core/components/input-number/index.js @@ -52,7 +52,6 @@ export default class InputNumber extends Textfield { } validateValue() { - console.log(this.displayControls); if ((this.validate() !== undefined && !this.validate()) || (this.max && this.value > this.max) || (this.min && this.value < this.min) ||