Skip to content

Commit c2ee706

Browse files
#RI-3649-add tooltip title
1 parent 6735f6a commit c2ee706

File tree

2 files changed

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

2 files changed

+3
-0
lines changed

redisinsight/ui/src/pages/databaseAnalysis/components/top-keys/Table.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ const Table = (props: Props) => {
9999
return (
100100
<div data-testid="top-keys-table-name" className={cx(styles.delimiter, 'truncateText')}>
101101
<EuiToolTip
102+
title="Key Name"
102103
anchorClassName={styles.tooltip}
103104
position="bottom"
104105
content={tooltipContent}

redisinsight/ui/src/pages/databaseAnalysis/components/top-namespace/Table.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ const NameSpacesTable = (props: Props) => {
7171
<div className={styles.expanded} key={type.type} data-testid={`expanded-${item.nsp}-${index}`}>
7272
<div className="truncateText">
7373
<EuiToolTip
74+
title="Key Pattern"
7475
anchorClassName={styles.tooltip}
7576
position="bottom"
7677
content={`${item.nsp}:*`}
@@ -123,6 +124,7 @@ const NameSpacesTable = (props: Props) => {
123124
return (
124125
<div className={cx(styles.delimiter, 'truncateText')}>
125126
<EuiToolTip
127+
title="Key Pattern"
126128
anchorClassName={styles.tooltip}
127129
position="bottom"
128130
content={tooltipContent}

0 commit comments

Comments
 (0)