From 32cb90aacfafa2a9a4e65ad3cf4be06299a6570a Mon Sep 17 00:00:00 2001 From: Tom Coleman Date: Mon, 18 Feb 2019 12:46:02 +1100 Subject: [PATCH] Panels are expected to set their own key --- addons/actions/src/manager.tsx | 2 +- lib/addons/src/index.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/addons/actions/src/manager.tsx b/addons/actions/src/manager.tsx index 6955cd1d172..be1e6f8e126 100644 --- a/addons/actions/src/manager.tsx +++ b/addons/actions/src/manager.tsx @@ -7,7 +7,7 @@ export function register() { addons.register(ADDON_ID, api => { addons.addPanel(PANEL_ID, { title: 'Actions', - render: ({ active }) => , + render: ({ active, key }) => , }); }); } diff --git a/lib/addons/src/index.ts b/lib/addons/src/index.ts index 22fc6f4b853..71fabb10a87 100644 --- a/lib/addons/src/index.ts +++ b/lib/addons/src/index.ts @@ -8,6 +8,7 @@ import deprecate from 'util-deprecate'; export interface RenderOptions { active: boolean; + key: string; } export interface RouteOptions { storyId: string;