From 7778b3e6e0a50b444fa36c78bc1b224ae86d8dec Mon Sep 17 00:00:00 2001
From: "francois.grand" <francois.grand@irstea.fr>
Date: Wed, 13 Jun 2018 09:21:18 +0200
Subject: [PATCH] =?UTF-8?q?=20#45=202=C3=A8me=20compl=C3=A9ment=20au=20com?=
 =?UTF-8?q?mit=20a4b5c3a=20:=20ParamValues.uncheckedValue()=20et=20ParamVa?=
 =?UTF-8?q?lues.isDefined()=20font=20maintenant=20r=C3=A9f=C3=A9rence=20?=
 =?UTF-8?q?=C3=A0=20=5FcurrentValue?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 src/param/param-values.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/param/param-values.ts b/src/param/param-values.ts
index cd30b294..9f72b116 100644
--- a/src/param/param-values.ts
+++ b/src/param/param-values.ts
@@ -157,7 +157,7 @@ export class ParamValues implements IObjectReference {
     }
 
     public get uncheckedValue() {
-        return this._singleValue.uncheckedValue;
+        return this._currentValue.uncheckedValue;
     }
 
     public setSingleValue(v: number) {
@@ -167,7 +167,7 @@ export class ParamValues implements IObjectReference {
     }
 
     public get isDefined() {
-        return this._singleValue.isDefined;
+        return this._currentValue.isDefined;
     }
 
     public get min() {
-- 
GitLab