Skip to content

Commit 25c4f42

Browse files
authored
Merge pull request #3616 from RedisInsight/fe/bugfix/RI-5937-rdi-page-does-not-open
Fixed rdi page not open
2 parents a4519d1 + 5f86871 commit 25c4f42

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

redisinsight/ui/src/components/home-tabs/HomeTabs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const HomeTabs = () => {
5555
<HighlightedFeature
5656
isHighlight={rdiHighlighting}
5757
/* highlighting will remove in next release, do not need cover multiple tabs */
58-
{...(BUILD_FEATURES.rdi || {})}
58+
{...(BUILD_FEATURES.redisDataIntegration || {})}
5959
>
6060
{title}
6161
</HighlightedFeature>

redisinsight/ui/src/constants/featuresHighlighting.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const BUILD_FEATURES: Record<string, BuildHighlightingFeature> = {
1414
aiChatbot: {
1515
type: 'dialog'
1616
},
17-
rdi: {
17+
redisDataIntegration: {
1818
type: 'tooltip-badge',
1919
title: '',
2020
content: 'Sync Redis databases with data from another database.',

redisinsight/ui/src/slices/interfaces/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export interface IMessage {
4242

4343
export enum AppWorkspace {
4444
Databases = 'databases',
45-
RDI = 'rdi'
45+
RDI = 'redisDataIntegration'
4646
}
4747

4848
export interface StateAppInfo {

0 commit comments

Comments
 (0)