From a2d43f0225c431ad732d06710ca841dbc10d947d Mon Sep 17 00:00:00 2001 From: Yusuke Matsushita Date: Sun, 8 Sep 2019 06:23:47 +0900 Subject: [PATCH] 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. --- addons/storysource/src/manager.js | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/storysource/src/manager.js b/addons/storysource/src/manager.js index 0bbb8f17113..f7cd166fd1b 100644 --- a/addons/storysource/src/manager.js +++ b/addons/storysource/src/manager.js @@ -10,6 +10,7 @@ export function register() { addons.addPanel(PANEL_ID, { title: 'Story', render: ({ active, key }) => , + paramKey: 'story', }); }); }