Skip to content

Commit 0a41ae0

Browse files
committed
#RI-3746 - Rename Redis Database Analysis to Database Analysis
1 parent 55a090a commit 0a41ae0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

redisinsight/ui/src/components/analytics-tabs/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const analyticsViewTabs: AnalyticsTabs[] = [
1212
},
1313
{
1414
id: AnalyticsViewTab.DatabaseAnalysis,
15-
label: 'Redis Database Analysis',
15+
label: 'Database Analysis',
1616
},
1717
{
1818
id: AnalyticsViewTab.SlowLog,

redisinsight/ui/src/pages/databaseAnalysis/components/header/Header.spec.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ describe('STANDALONE db', () => {
164164
})
165165
await waitForEuiToolTipVisible()
166166

167-
expect(screen.getByTestId('db-new-reports-tooltip')).toHaveTextContent('Redis Database AnalysisAnalyze up to 10 000 keys per Redis database to get an overview of your data.')
167+
expect(screen.getByTestId('db-new-reports-tooltip')).toHaveTextContent('Database AnalysisAnalyze up to 10 000 keys per Redis database to get an overview of your data.')
168168
})
169169
})
170170

@@ -182,6 +182,6 @@ describe('SENTINEL db', () => {
182182
})
183183
await waitForEuiToolTipVisible()
184184

185-
expect(screen.getByTestId('db-new-reports-tooltip')).toHaveTextContent('Redis Database AnalysisAnalyze up to 10 000 keys per Redis database to get an overview of your data.')
185+
expect(screen.getByTestId('db-new-reports-tooltip')).toHaveTextContent('Database AnalysisAnalyze up to 10 000 keys per Redis database to get an overview of your data.')
186186
})
187187
})

redisinsight/ui/src/pages/databaseAnalysis/components/header/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ const Header = (props: Props) => {
155155
position="bottom"
156156
anchorClassName={styles.tooltipAnchor}
157157
className={styles.tooltip}
158-
title="Redis Database Analysis"
158+
title="Database Analysis"
159159
content={connectionType === ConnectionType.Cluster ? clusterTooltipMessage : commonTooltipMessage}
160160
data-testid="db-new-reports-tooltip"
161161
>

0 commit comments

Comments
 (0)