Skip to content

Commit 4c3d07d

Browse files
author
ALENA NABOKA
committed
fix tooltip header and text
1 parent b2cd04f commit 4c3d07d

File tree

1 file changed

+3
-3
lines changed
  • redisinsight/ui/src/pages/databaseAnalysis/components/header

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ import styles from './styles.module.scss'
3232

3333
const dateFormat = 'd MMM yyyy HH:mm'
3434

35-
const commonTooltipMessage = 'Analyze up to 10,000 keys per shard to get an overview of your data.'
36-
const clusterTooltipMessage = 'Analyze up to 10,000 keys per Redis database to get an overview of your data.'
35+
const commonTooltipMessage = 'Analyze up to 10 000 keys per Redis database to get an overview of your data.'
36+
const clusterTooltipMessage = 'Analyze up to 10 000 keys per shard to get an overview of your data.'
3737

3838
export interface Props {
3939
items: ShortDatabaseAnalysis[]
@@ -155,7 +155,7 @@ const Header = (props: Props) => {
155155
position="bottom"
156156
anchorClassName={styles.tooltipAnchor}
157157
className={styles.tooltip}
158-
title="Memory Efficiency"
158+
title="Redis Database Analysis"
159159
content={connectionType === ConnectionType.Cluster ? clusterTooltipMessage : commonTooltipMessage}
160160
data-testid="db-new-reports-tooltip"
161161
>

0 commit comments

Comments
 (0)