File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import { useFeatureFlag } from 'features/feature-flags/api';
8
8
import { useEvents , useTrackEvent } from 'hooks/useTrackEvent' ;
9
9
import {
10
10
BookOpenIcon ,
11
+ ChartNoAxesCombined ,
11
12
CodeXmlIcon ,
12
13
FileDownIcon ,
13
14
HelpCircleIcon ,
@@ -44,6 +45,11 @@ const MENU_ITEMS = [
44
45
to : `${ PORTAL_URL } /datasets` ,
45
46
icon : FileDownIcon ,
46
47
} ,
48
+ {
49
+ label : 'Data Explorer' ,
50
+ to : `${ PORTAL_URL } /data-explorer` ,
51
+ icon : ChartNoAxesCombined ,
52
+ } ,
47
53
{
48
54
label : 'API' ,
49
55
to : `${ PORTAL_URL } ` ,
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ const Sidebar = React.forwardRef<
43
43
>
44
44
< div
45
45
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 "
47
47
>
48
48
{ children }
49
49
</ div >
You can’t perform that action at this time.
0 commit comments