diff --git a/src/app/components/param-values/param-values.component.ts b/src/app/components/param-values/param-values.component.ts
index 0349075f108df32bec632b824a2dee49373265d6..e0f63c158b5bc8e902f25d1782a74fe6ae4d936b 100644
--- a/src/app/components/param-values/param-values.component.ts
+++ b/src/app/components/param-values/param-values.component.ts
@@ -158,28 +158,7 @@ export class ParamValuesComponent implements DoCheck {
         this._valueModes.push({ "value": ParamValueMode.MINMAX, "label": "Min/max" });
         this._valueModes.push({ "value": ParamValueMode.LISTE, "label": "Liste" });
     }
-
-    private getDefaultMin(): number {
-        switch (this._param.domain.domain) {
-            case ParamDomainValue.ANY:
-            case ParamDomainValue.NOT_NULL:
-                return -10;
-
-            default:
-                return this._param.domain.minValue;
-        }
-    }
-
-    private getDefaultMax(): number {
-        switch (this._param.domain.domain) {
-            case ParamDomainValue.INTERVAL:
-                return this._param.domain.maxValue;
-
-            default:
-                return 10;
-        }
-    }
-
+   
     private initMinMaxStep() {
         // valeur pour min (celle déjà définie ou celle déduite du domaine de définition)
         let min: number = this._param.minValue;
@@ -195,7 +174,7 @@ export class ParamValuesComponent implements DoCheck {
             }
         }
         if (!ok)
-            min = this.getDefaultMin();
+            min = this._param.getValue() / 2;
 
         // valeur pour max (celle déjà définie ou celle déduite du domaine de définition)
         let max: number = this._param.maxValue;
@@ -211,13 +190,13 @@ export class ParamValuesComponent implements DoCheck {
             }
         }
         if (!ok)
-            max = this.getDefaultMax();
+            max = this._param.getValue() * 2;
 
         this._minComponent.refValue = new Pair(this._param.domain.minValue, max);
-        this._minComponent.model = this._param.getValue() / 2;
+        this._minComponent.model = min;
 
         this._maxComponent.refValue = new Pair(min, this._param.domain.maxValue);
-        this._maxComponent.model = this._param.getValue() * 2;
+        this._maxComponent.model = max;
 
         this.updateStepComponentRef();