Skip to content

Commit

Permalink
Update x-pack/plugins/infra/public/components/navigation/routed_tabs.tsx
Browse files Browse the repository at this point in the history
Co-Authored-By: Felix Stürmer <[email protected]>
  • Loading branch information
Kerry350 and weltenwort authored Mar 5, 2020
1 parent 4d804a7 commit fb54d71
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const RoutedTabs = ({ tabs }: RoutedTabsProps) => {
return (
<EuiTabs display="condensed">
{tabs.map(tab => {
return <Tab {...tab} />;
return <Tab key={`${tab.path}-${tab.title}`} {...tab} />;
})}
</EuiTabs>
);
Expand Down

0 comments on commit fb54d71

Please sign in to comment.