We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4b839f commit d7c6562Copy full SHA for d7c6562
redisinsight/ui/src/components/navigation-menu/hooks/useNavigation.ts
@@ -92,6 +92,16 @@ export function useNavigation() {
92
iconType: BrowserIcon,
93
onboard: ONBOARDING_FEATURES.BROWSER_PAGE,
94
},
95
+ {
96
+ tooltipText: 'Search',
97
+ pageName: PageNames.vectorSearch,
98
+ ariaLabel: 'Search',
99
+ onClick: () => handleGoPage(Pages.vectorSearch(connectedInstanceId)),
100
+ dataTestId: 'vector-search-page-btn',
101
+ connectedInstanceId,
102
+ isActivePage: activePage === `/${PageNames.vectorSearch}`,
103
+ iconType: SlowLogIcon,
104
+ },
105
{
106
tooltipText: 'Workbench',
107
pageName: PageNames.workbench,
0 commit comments