mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:11:08 +08:00
Addon Info: Omit empty inline info header
This commit is contained in:
parent
0520eabf38
commit
549e55e05b
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user