fix info not importing docgen descriptions

This commit is contained in:
Daniel Duan 2017-10-26 17:39:38 -04:00
parent 03c3d6dae4
commit 22a9957ca2

View File

@ -237,7 +237,7 @@ export default class Story extends React.Component {
if (Object.keys(STORYBOOK_REACT_CLASSES).length) {
Object.keys(STORYBOOK_REACT_CLASSES).forEach(key => {
if (STORYBOOK_REACT_CLASSES[key].name === this.props.context.kind) {
if (STORYBOOK_REACT_CLASSES[key].name === this.props.context.story) {
retDiv = <div>{STORYBOOK_REACT_CLASSES[key].docgenInfo.description}</div>;
}
});