mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:31:05 +08:00
Panels are expected to set their own key
This commit is contained in:
parent
37503870f9
commit
32cb90aacf
@ -7,7 +7,7 @@ export function register() {
|
|||||||
addons.register(ADDON_ID, api => {
|
addons.register(ADDON_ID, api => {
|
||||||
addons.addPanel(PANEL_ID, {
|
addons.addPanel(PANEL_ID, {
|
||||||
title: 'Actions',
|
title: 'Actions',
|
||||||
render: ({ active }) => <ActionLogger api={api} active={active} />,
|
render: ({ active, key }) => <ActionLogger key={key} api={api} active={active} />,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -8,6 +8,7 @@ import deprecate from 'util-deprecate';
|
|||||||
|
|
||||||
export interface RenderOptions {
|
export interface RenderOptions {
|
||||||
active: boolean;
|
active: boolean;
|
||||||
|
key: string;
|
||||||
}
|
}
|
||||||
export interface RouteOptions {
|
export interface RouteOptions {
|
||||||
storyId: string;
|
storyId: string;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user