mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:31:27 +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.addPanel(PANEL_ID, {
|
||||
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 {
|
||||
active: boolean;
|
||||
key: string;
|
||||
}
|
||||
export interface RouteOptions {
|
||||
storyId: string;
|
||||
|
Loading…
x
Reference in New Issue
Block a user