From 34bf94fae5780125cf2e44ef35a7cad6a92a3e7b Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Mon, 22 Jul 2019 12:34:04 -0400 Subject: [PATCH] fix to editGenetics --- src/js/utilJS.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/utilJS.js b/src/js/utilJS.js index 93680f7781a..5de5fe3d111 100644 --- a/src/js/utilJS.js +++ b/src/js/utilJS.js @@ -939,7 +939,7 @@ window.Categorizer.prototype.cat = function(val, def) { } // Record the value for the result's getter, if it is an object // and doesn't have the property yet - if (result === Object.isObject(result)) { + if (result === _.isObject(result)) { result.value = val; } return result; -- GitLab