Skip to content

Commit 377189b

Browse files
authored
Add data-explorer tab (#8143)
1 parent debf186 commit 377189b

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

web/src/features/app-sidebar/AppSidebar.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { useFeatureFlag } from 'features/feature-flags/api';
88
import { useEvents, useTrackEvent } from 'hooks/useTrackEvent';
99
import {
1010
BookOpenIcon,
11+
ChartNoAxesCombined,
1112
CodeXmlIcon,
1213
FileDownIcon,
1314
HelpCircleIcon,
@@ -44,6 +45,11 @@ const MENU_ITEMS = [
4445
to: `${PORTAL_URL}/datasets`,
4546
icon: FileDownIcon,
4647
},
48+
{
49+
label: 'Data Explorer',
50+
to: `${PORTAL_URL}/data-explorer`,
51+
icon: ChartNoAxesCombined,
52+
},
4753
{
4854
label: 'API',
4955
to: `${PORTAL_URL}`,

web/src/features/app-sidebar/Sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const Sidebar = React.forwardRef<
4343
>
4444
<div
4545
data-sidebar="sidebar"
46-
className="bg-sidebar flex h-full w-full flex-col group-data-[variant=floating]:rounded-lg group-data-[variant=floating]:border group-data-[variant=floating]:border-stroke group-data-[variant=floating]:shadow"
46+
className="bg-sidebar flex h-full w-full flex-col border-r border-neutral-200 group-data-[variant=floating]:rounded-lg group-data-[variant=floating]:border group-data-[variant=floating]:border-stroke group-data-[variant=floating]:shadow dark:border-neutral-700/60"
4747
>
4848
{children}
4949
</div>

0 commit comments

Comments
 (0)