More deepscan fixes

This commit is contained in:
Michael Shilman 2019-08-27 16:02:19 +08:00
parent 245805a7a0
commit 3c068fffd2

View File

@ -23,17 +23,16 @@ export const getPropsTableProps = (
{ exclude, of }: PropsProps,
{ parameters }: DocsContextProps
): PropsTableProps => {
const { component } = parameters;
try {
const params = parameters || {};
const { component, framework = null } = params;
const target = of === CURRENT_SELECTION ? component : of;
if (!target) {
throw new Error(PropsTableError.NO_COMPONENT);
}
const params = parameters || {};
const { framework = null } = params;
const { getPropDefs = inferPropDefs(framework) } = params.docs || {};
if (!getPropDefs) {
throw new Error(PropsTableError.PROPS_UNSUPPORTED);
}