Skip to content

Commit

Permalink
Update (shorten) tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
badgley authored Jan 4, 2024
1 parent f38d7c6 commit df8d4fc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions components/projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const Projects = () => {
key: 'issued',
label: (
<TooltipWrapper
tooltip='Total number of credits issued'
tooltip='Number of credits issued'
sx={sx.tooltip}
>
Issued
Expand All @@ -95,7 +95,7 @@ const Projects = () => {
key: 'retired',
label: (
<TooltipWrapper
tooltip='Total number of credits retired'
tooltip='Number of credits retired'
sx={sx.tooltip}
>
Retired
Expand Down
8 changes: 4 additions & 4 deletions components/queries.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const Queries = () => {
<Box sx={sx.label}>Search</Box>
</Column>
<Column start={[1, 3, 2, 2]} width={[6, 5, 2, 2]}>
<TooltipWrapper tooltip='Search all projects by ID or name.'>
<TooltipWrapper tooltip='Search projects by ID or name.'>
<Input
placeholder='enter search term'
size='xs'
Expand All @@ -126,7 +126,7 @@ const Queries = () => {
<Box sx={sx.label}>Registry</Box>
</Column>
<Column start={[1, 3, 2, 2]} width={[6, 5, 2, 2]}>
<TooltipWrapper tooltip='Filter projects by registry: Verra (VCS), Gold Standard (GLD), Global Carbon Council (GCC), American Carbon Registry (ACR), Climate Action Reserve (CAR), and ART TREES (ART).'>
<TooltipWrapper tooltip='Filter projects by registry.'>
<Filter
values={registry}
setValues={setRegistry}
Expand All @@ -142,7 +142,7 @@ const Queries = () => {
<Box sx={sx.label}>Category</Box>
</Column>
<Column start={[1, 3, 2, 2]} width={[6, 5, 2, 2]}>
<TooltipWrapper tooltip='Filter projects by category inferred from protocol.'>
<TooltipWrapper tooltip='Filter projects by category.'>
<Category />
</TooltipWrapper>
</Column>
Expand All @@ -162,7 +162,7 @@ const Queries = () => {
<Box sx={sx.label}>Program</Box>
</Column>
<Column start={[1, 3, 2, 2]} width={[6, 5, 2, 2]}>
<TooltipWrapper tooltip='Filter projects based on whether they are enrolled in a compliance program (ARB) or voluntary programs.'>
<TooltipWrapper tooltip='Filter projects by market.'>
<Filter
values={{
all: typeof complianceOnly !== 'boolean',
Expand Down

0 comments on commit df8d4fc

Please sign in to comment.