Panels are expected to set their own key

This commit is contained in:
Tom Coleman 2019-02-18 12:46:02 +11:00
parent 37503870f9
commit 32cb90aacf
2 changed files with 2 additions and 1 deletions

View File

@ -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} />,
});
});
}

View File

@ -8,6 +8,7 @@ import deprecate from 'util-deprecate';
export interface RenderOptions {
active: boolean;
key: string;
}
export interface RouteOptions {
storyId: string;