diff --git a/utilities/utils/helper.js b/utilities/utils/helper.js index 80b37ce27..e41c276b8 100644 --- a/utilities/utils/helper.js +++ b/utilities/utils/helper.js @@ -149,7 +149,7 @@ const getValue = function (obj, key) { } if (val !== undefined) { - return val; + return isNaN(val) ? val : Number(val); } } }