We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6bd9f4 commit 1f0ace0Copy full SHA for 1f0ace0
lib/utils.js
@@ -262,7 +262,7 @@ Utils.removeNamespacesFromVariables = function(vars) {
262
* Utility function to extract a value from a config rule - if the value is a variable, take the value of that variable instead
263
*/
264
Utils.getConfigValue = function(val, row) {
265
- val = this.removeNamespaceFromVariable(val)
+ if (typeof val == 'string') val = this.removeNamespaceFromVariable(val)
266
if (typeof val == 'string' && row[val]) {
267
var rad = row[val]
268
if (rad && rad['@value']) return rad['@value']
0 commit comments