From f917b58dd3fdc108816792f8c0cd22a59727197a Mon Sep 17 00:00:00 2001 From: Prateek Shourya Date: Tue, 2 Jan 2024 16:07:22 +0530 Subject: [PATCH] style: remove unnecessary vertical scroll in `All Issues Tabs`. --- web/components/workspace/views/header.tsx | 58 ++++++++++++----------- 1 file changed, 30 insertions(+), 28 deletions(-) diff --git a/web/components/workspace/views/header.tsx b/web/components/workspace/views/header.tsx index f0636d80a5..8816be9670 100644 --- a/web/components/workspace/views/header.tsx +++ b/web/components/workspace/views/header.tsx @@ -37,35 +37,37 @@ export const GlobalViewsHeader: React.FC = observer(() => { return ( <> setCreateViewModal(false)} /> -
- {DEFAULT_GLOBAL_VIEWS_LIST.map((tab) => ( - - - {tab.label} - - - ))} +
+
+ {DEFAULT_GLOBAL_VIEWS_LIST.map((tab) => ( + + + {tab.label} + + + ))} - {globalViewsStore.globalViewsList?.map((view) => ( - - - {view.name} - - - ))} + {globalViewsStore.globalViewsList?.map((view) => ( + + + {view.name} + + + ))} +
{isAuthorizedUser && (