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 ffb7ce3 commit 569c817Copy full SHA for 569c817
src/parsers/ComponentsParser.ts
@@ -66,7 +66,8 @@ export class ComponentsParser extends BaseParser {
66
...this.inheritProps(schema),
67
name,
68
type,
69
- required,
+ // {type: 'string', required: true}
70
+ required: (schema.required as boolean | undefined) || required,
71
kind: 'origin',
72
};
73
}
0 commit comments