Skip to content

Commit

Permalink
[GEN-1915]: removed service-map and trace-view buttons from overview …
Browse files Browse the repository at this point in the history
…navigation (#1922)

This pull request includes a small change to the
`frontend/webapp/reuseable-components/tab-list/index.tsx` file. The
change comments out the 'Service map' and 'Trace view' tabs instead of
removing them entirely.

*
[`frontend/webapp/reuseable-components/tab-list/index.tsx`](diffhunk://#diff-7ac3f19106b928b2789dbbef7ebbd1514c3faf68c7c6a15379c047bcaac56518L69-R84):
Commented out the 'Service map' and 'Trace view' tabs to keep them for
future use instead of deleting them.

---------

Co-authored-by: Alon Braymok <[email protected]>
Co-authored-by: Tamir David <[email protected]>
Co-authored-by: Tamir David <[email protected]>
Co-authored-by: Amir Blum <[email protected]>
Co-authored-by: Ron Federman <[email protected]>
Co-authored-by: yodigos <[email protected]>
Co-authored-by: Mike Dame <[email protected]>
Co-authored-by: alonbraymok <[email protected]>
Co-authored-by: Daria Dovzhikova <[email protected]>
Co-authored-by: David <[email protected]>
Co-authored-by: David <[email protected]>
Co-authored-by: Eden Federman <[email protected]>
  • Loading branch information
13 people authored Dec 5, 2024
1 parent 91bb5d4 commit 825ca5b
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions frontend/webapp/reuseable-components/tab-list/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,22 +66,22 @@ const TABS = [
selected: true,
onClick: () => {},
},
{
title: 'Service map',
icon: '/icons/overview/service-map.svg',
selected: false,
onClick: () => {},
disabled: true,
tooltip: 'Coming soon',
},
{
title: 'Trace view',
icon: '/icons/overview/trace-view.svg',
selected: false,
onClick: () => {},
disabled: true,
tooltip: 'Coming soon',
},
// {
// title: 'Service map',
// icon: '/icons/overview/service-map.svg',
// selected: false,
// onClick: () => {},
// disabled: true,
// tooltip: 'Coming soon',
// },
// {
// title: 'Trace view',
// icon: '/icons/overview/trace-view.svg',
// selected: false,
// onClick: () => {},
// disabled: true,
// tooltip: 'Coming soon',
// },
];

const TabList: React.FC<TabListProps> = ({ tabs = TABS }) => {
Expand Down

0 comments on commit 825ca5b

Please sign in to comment.