Addon-docs: Fix props table in no props case (#8632)

Addon-docs: Fix props table in no props case
This commit is contained in:
Michael Shilman 2019-10-30 16:17:50 +08:00 committed by GitHub
commit 2694435a92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -165,15 +165,15 @@ const PropsTable: FC<PropsTableProps> = props => {
return <EmptyBlock>{error}</EmptyBlock>;
}
let allRows: any[];
let allRows: any[] = [];
const { sections } = props as PropsTableSectionsProps;
const { rows } = props as PropsTableRowsProps;
if (sections) {
allRows = [];
Object.keys(sections).forEach(section => {
const rows = sections[section];
if (rows && rows.length > 0) {
const sectionRows = sections[section];
if (sectionRows && sectionRows.length > 0) {
allRows.push({ key: section, value: { section } });
rows.forEach(row => {
sectionRows.forEach(row => {
allRows.push({
key: `${section}_${row.name}`,
value: { row },
@ -181,8 +181,7 @@ const PropsTable: FC<PropsTableProps> = props => {
});
}
});
} else {
const { rows } = props as PropsTableRowsProps;
} else if (rows) {
allRows = rows.map(row => ({
key: row.name,
value: { row },