Skip to content

Commit fa85dcc

Browse files
RI-7431: Pop-over when users hover over the mini-dash.
1 parent 8a2ea60 commit fa85dcc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

redisinsight/ui/src/components/database-overview/DatabaseOverview.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,11 +118,11 @@ const DatabaseOverview = () => {
118118
const getTooltipContent = (metric: IMetric) => {
119119
if (!metric.children?.length) {
120120
return (
121-
<>
121+
<Row>
122122
<span>{metric.tooltip?.content}</span>
123123
&nbsp;
124124
<span>{metric.tooltip?.title}</span>
125-
</>
125+
</Row>
126126
)
127127
}
128128
return metric.children

redisinsight/ui/src/components/database-overview/components/OverviewMetrics/OverviewMetrics.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,7 @@ function getTotalKeysItem(
304304
>
305305
db{db || 0}:
306306
</span>
307+
&nbsp;
307308
<b>{numberWithSpaces(dbKeysCount || 0)}</b>
308309
</>
309310
),

0 commit comments

Comments
 (0)