Clarify keyword metric tooltips (#216)

This commit is contained in:
Ben Senescu 2026-05-22 21:47:28 -04:00 committed by GitHub
parent 44073498ed
commit 9c9477c1cf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 5 additions and 5 deletions

View File

@ -128,7 +128,7 @@ function DomainKeywordsTableComponent({
header: () => (
<SortableHeader
label="Score"
helpText="Keyword difficulty score."
helpText="Organic ranking difficulty (0-100): higher means harder to reach Google's top 10."
isActive={sortMode === "score"}
order={currentSortOrder}
onClick={() => onSortClick("score")}

View File

@ -127,7 +127,7 @@ export function KeywordResearchDesktopTable({
header: () => (
<SortHeader
label="Comp."
helpText="Advertiser competition."
helpText="Paid-search competition from Google Ads (0-1): higher means more advertisers bidding."
field="competition"
current={sortField}
dir={sortDir}
@ -149,7 +149,7 @@ export function KeywordResearchDesktopTable({
header: () => (
<SortHeader
label="Score"
helpText="Keyword difficulty score."
helpText="Organic ranking difficulty (0-100): higher means harder to reach Google's top 10."
field="keywordDifficulty"
current={sortField}
dir={sortDir}

View File

@ -72,7 +72,7 @@ export function SavedKeywordsTable({
<SortableHeader
column={column}
label="Competition"
helpText="Advertiser competition."
helpText="Paid-search competition from Google Ads (0-1): higher means more advertisers bidding."
/>
),
cell: ({ getValue }) => {
@ -85,7 +85,7 @@ export function SavedKeywordsTable({
<SortableHeader
column={column}
label="Difficulty"
helpText="Keyword difficulty score."
helpText="Organic ranking difficulty (0-100): higher means harder to reach Google's top 10."
/>
),
cell: ({ getValue }) => <DifficultyBadge value={getValue()} />,