Skip to content
Snippets Groups Projects
Commit 573b434d authored by Rhys Arkins's avatar Rhys Arkins Committed by GitHub
Browse files

fix: arrays of objects should be massaged (#696)

parent 71878214
No related merge requests found
...@@ -20,6 +20,15 @@ function massageConfig(config) { ...@@ -20,6 +20,15 @@ function massageConfig(config) {
massagedConfig[key] = [val]; massagedConfig[key] = [val];
} else if (isObject(val)) { } else if (isObject(val)) {
massagedConfig[key] = massageConfig(val); massagedConfig[key] = massageConfig(val);
} else if (Array.isArray(val)) {
massagedConfig[key] = [];
val.forEach(item => {
if (isObject(item)) {
massagedConfig[key].push(massageConfig(item));
} else {
massagedConfig[key].push(item);
}
});
} }
} }
return massagedConfig; return massagedConfig;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment