Merge branch 'master' into ft/3289-boolean-default-value

This commit is contained in:
shockey
2017-06-26 18:11:35 -07:00
committed by GitHub
11 changed files with 77 additions and 87 deletions

View File

@@ -74,6 +74,10 @@ export const sampleFromSchema = (schema, config={}) => {
return normalizeArray(schema["enum"])[0]
}
if (type === "file") {
return
}
return primitive(schema)
}