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 cecf0e0 commit 70dfaecCopy full SHA for 70dfaec
package/lib/ValidationContext.js
@@ -17,15 +17,15 @@ export default class ValidationContext {
17
Object.keys(schema).forEach(key => {
18
const schemaElement = schema[key];
19
schemaElement.type.definitions && schemaElement.type.definitions.forEach(def => {
20
- if(typeof def.type === "object") {
+ if (typeof def.type === 'object') {
21
addDeps(def.type._schema, keys.concat(key));
22
} else {
23
- const fullKey = keys.concat(key).join(".");
+ const fullKey = keys.concat(key).join('.');
24
this._deps[fullKey] = new tracker.Dependency();
25
}
26
- })
+ });
27
});
28
- }
+ };
29
addDeps(this._schema);
30
31
0 commit comments