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 b72bcff commit 3894fedCopy full SHA for 3894fed
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
- if (typeof val == 'string' && val.substring(0, 2) == 'v:') {
+ if (typeof val == 'string' && row[val]) {
266
var rad = row[val]
267
if (rad && rad['@value']) return rad['@value']
268
return rad
0 commit comments