Skip to content

Commit 82cb911

Browse files
committed
Hotfix
1 parent f12ecaf commit 82cb911

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@storybook/addon-devkit",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Storybook Addon Development Kit",
55
"author": {
66
"name": "Oleg Proskurin",

src/register.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class PanelHOC extends React.Component {
7474
}
7575
render() {
7676
const Panel = this.props.component;
77-
const { api, active, data, setData, config } = this.props;
77+
const { api, active, data, setData, config, isFirstDataReceived } = this.props;
7878
const { ADDON_ID, PANEL_ID, PANEL_Title } = config;
7979
const { kind, story } = this.state;
8080

@@ -104,6 +104,7 @@ class PanelHOC extends React.Component {
104104
rect={dim}
105105
Layout={Layout}
106106
Block={Block}
107+
isFirstDataReceived={isFirstDataReceived}
107108
/>
108109
</LayoutProvider>
109110
</div>

0 commit comments

Comments
 (0)