Skip to content
Snippets Groups Projects
Commit b52fd3bb authored by Alvaro Cabrera Durán's avatar Alvaro Cabrera Durán
Browse files

Use fix from develop; close #510

parent 0307d133
Branches
Tags
No related merge requests found
...@@ -121,7 +121,9 @@ function objectType(value, path, resolve, traverseCallback) { ...@@ -121,7 +121,9 @@ function objectType(value, path, resolve, traverseCallback) {
if (requiredProperties.indexOf(key) !== -1) { if (requiredProperties.indexOf(key) !== -1) {
props[key] = properties[key]; props[key] = properties[key];
} }
} else if (properties[key]) { }
if (properties[key]) {
props[key] = properties[key]; props[key] = properties[key];
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment