diff --git a/src/components/App/TopNav.js b/src/components/App/TopNav.js index ebff68dccc..001f892463 100644 --- a/src/components/App/TopNav.js +++ b/src/components/App/TopNav.js @@ -82,21 +82,21 @@ export default function TopNav(props: TopNavProps) { Jaeger UI - {menuItems.map(item => { - if (item.items) { - return ; - } - return ; - })} +
+ +
+ {NAV_LINKS.map(({ key, to, text }) => + + {text} + + )}
-
- -
- {NAV_LINKS.map(({ key, to, text }) => - - {text} - - )} + {menuItems.map(item => { + if (item.items) { + return ; + } + return ; + })}
); diff --git a/src/constants/default-config.js b/src/constants/default-config.js index cca38e573c..531cf5c876 100644 --- a/src/constants/default-config.js +++ b/src/constants/default-config.js @@ -49,34 +49,5 @@ export default { }, ], }, - { - label: 'Create a ticket', - items: [ - { - label: 'Jaeger Core', - url: 'https://github.com/uber/jaeger/issues', - }, - { - label: 'Go Client', - url: 'https://github.com/uber/jaeger-client-go/issues', - }, - { - label: 'Java Client', - url: 'https://github.com/uber/jaeger-client-java/issues', - }, - { - label: 'Node Client', - url: 'https://github.com/uber/jaeger-client-node/issues', - }, - { - label: 'Python Client', - url: 'https://github.com/uber/jaeger-client-python/issues', - }, - { - label: 'Jaeger UI', - url: 'https://github.com/uber/jaeger-ui/issues', - }, - ], - }, ], };