Merge pull request #8633 from jung-han/7005-addon-notes-key-warning

Addon-notes: Add key to render function
This commit is contained in:
Michael Shilman 2019-10-30 17:19:38 +08:00 committed by GitHub
commit 17e422e23c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ export default function register(type: types) {
title: 'Notes',
route: ({ storyId }) => `/info/${storyId}`, // todo add type
match: ({ viewMode }) => viewMode === 'info', // todo add type
render: ({ active }) => <Panel api={api} active={active} />,
render: ({ active, key }) => <Panel api={api} active={active} key={key} />,
paramKey: PARAM_KEY,
});
});