Add paramKey for addon-storysource

Now you can hide the Story panel by `addParameters({ story: { disabled: true } });`.
I suppose that without this fix there is no way to selectively show or hide the Story panel.
This commit is contained in:
Yusuke Matsushita 2019-09-08 06:23:47 +09:00 committed by GitHub
parent 72e25c7ae5
commit a2d43f0225
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,6 +10,7 @@ export function register() {
addons.addPanel(PANEL_ID, {
title: 'Story',
render: ({ active, key }) => <StoryPanel key={key} api={api} active={active} />,
paramKey: 'story',
});
});
}