Addon Info: Omit empty inline info header

This commit is contained in:
Duncan Beevers 2017-06-17 12:48:25 -07:00
parent 0520eabf38
commit 549e55e05b
No known key found for this signature in database
GPG Key ID: 87FAD60CA3C9B950

View File

@ -125,11 +125,7 @@ export default class Story extends React.Component {
_renderInline() {
return (
<div>
<div style={this.state.stylesheet.infoPage}>
<div style={this.state.stylesheet.infoBody}>
{this._getInfoHeader()}
</div>
</div>
{this._renderInlineHeader()}
<div>
{this._renderStory()}
</div>
@ -145,6 +141,19 @@ export default class Story extends React.Component {
);
}
_renderInlineHeader() {
const infoHeader = this._getInfoHeader();
return (
infoHeader &&
<div style={this.state.stylesheet.infoPage}>
<div style={this.state.stylesheet.infoBody}>
{infoHeader}
</div>
</div>
);
}
_renderOverlay() {
const linkStyle = {
...stylesheet.link.base,