We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4a4bf6 commit 7bb2810Copy full SHA for 7bb2810
statshouse-ui/src/components/SelectMertic/SelectMetricRow.tsx
@@ -49,7 +49,10 @@ export const SelectMetricRow = memo(function _SelectMetricRow<T extends SelectOp
49
<Tooltip className="flex-grow-1 text-truncate" title={rows[index]?.value ?? `row ${index}`}>
50
{rows[index]?.value ?? `row ${index}`}
51
</Tooltip>
52
- <Tooltip className="me-2" title={metricsFavorite[rows[index]?.value] ? 'remove favorite' : 'add favorite'}>
+ <Tooltip
53
+ className="me-2"
54
+ title={metricsFavorite[rows[index]?.value] ? 'remove from favorites' : 'add to favorites'}
55
+ >
56
<span className="text-primary" onClick={toggleFavorite}>
57
{metricsFavorite[rows[index]?.value] ? <SVGStarFill /> : <SVGStar />}
58
</span>
0 commit comments