Addon-docs: Hide stories block when there are no stories (#9271)

Addon-docs: Hide stories block when there are no stories
This commit is contained in:
Michael Shilman 2019-12-31 03:29:06 +08:00 committed by GitHub
commit 608cdbfe20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@ export const Stories: FunctionComponent<StoriesProps> = ({ slot, title }) => {
const stories: DocsStoryProps[] = slot
? slot(componentStories, context)
: componentStories && componentStories.slice(1);
if (!stories) {
if (!stories || stories.length === 0) {
return null;
}
return (