From 825ca5b009f9e17727d51aa38e82e500f0fb19b1 Mon Sep 17 00:00:00 2001 From: Ben Elferink Date: Thu, 5 Dec 2024 11:31:35 +0200 Subject: [PATCH] [GEN-1915]: removed service-map and trace-view buttons from overview 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 <138359965+alonkeyval@users.noreply.github.com> Co-authored-by: Tamir David Co-authored-by: Tamir David Co-authored-by: Amir Blum Co-authored-by: Ron Federman <73110295+RonFed@users.noreply.github.com> Co-authored-by: yodigos Co-authored-by: Mike Dame Co-authored-by: alonbraymok Co-authored-by: Daria Dovzhikova Co-authored-by: David <65228999+david336362@users.noreply.github.com> Co-authored-by: David Co-authored-by: Eden Federman --- .../reuseable-components/tab-list/index.tsx | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/frontend/webapp/reuseable-components/tab-list/index.tsx b/frontend/webapp/reuseable-components/tab-list/index.tsx index 7e9e42596..fdd9adec6 100644 --- a/frontend/webapp/reuseable-components/tab-list/index.tsx +++ b/frontend/webapp/reuseable-components/tab-list/index.tsx @@ -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 = ({ tabs = TABS }) => {