-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates to race labels incl.
Indigenous
on frontend (#3443)
# Description and Motivation <!--- bulleted, high level items. use keywords (eg "closes #144" or "fixes #4323") --> - closes #3442 - move repeated footnote about race relabelings from the card-level footnote to a single, larger report-level footnote - adjusts language in methodology to reflect our race relabelings - remove unneeded lazy load - adjust minor styling tweaks ## Has this been tested? How? - `npm run e2e:nightly` passes locally - non-NH topic reports don't show NH footnote; NH topic reports do ## Screenshots (if appropriate) <img width="1564" alt="Screenshot 2024-07-05 at 9 34 59 AM" src="https://github.com/SatcherInstitute/health-equity-tracker/assets/41567007/1410cc40-2b13-43f1-85e3-74eed71e9d37"> <img width="918" alt="Screenshot 2024-07-05 at 9 36 09 AM" src="https://github.com/SatcherInstitute/health-equity-tracker/assets/41567007/2878822a-b89f-470e-b441-513a7cc8937c"> <img width="918" alt="Screenshot 2024-07-05 at 9 37 25 AM" src="https://github.com/SatcherInstitute/health-equity-tracker/assets/41567007/3e0889aa-c5c9-4aa4-8443-38bcaeeba150"> <img width="918" alt="Screenshot 2024-07-05 at 9 44 13 AM" src="https://github.com/SatcherInstitute/health-equity-tracker/assets/41567007/2bbf1411-cd70-42f8-8197-a61777cc250b"> ## Types of changes (leave all that apply) - New content or feature ## New frontend preview link is below in the Netlify comment 😎
- Loading branch information
1 parent
6815916
commit e0c0cf1
Showing
6 changed files
with
61 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import HetTerm from "../../styles/HetComponents/HetTerm"; | ||
|
||
export function RaceRelabelingsList() { | ||
return ( | ||
<aside className='px-5 pb-10'> | ||
<h4 className='m-0 pb-5 text-title font-semibold'> | ||
Race group reclassifications | ||
</h4> | ||
<p>To promote inclusion, we reclassify certain race groups from the source data as outlined below:</p> | ||
|
||
<ul> | ||
<li | ||
className='pt-1' | ||
> | ||
<HetTerm> | ||
Two or more races | ||
</HetTerm> replaces the source label ‘Multiracial’. | ||
</li> | ||
|
||
<li | ||
className='pt-1' | ||
> | ||
<HetTerm> | ||
Unrepresented | ||
</HetTerm> replaces the source label ‘Some other race’. | ||
</li> | ||
|
||
<li | ||
className='pt-1' | ||
> | ||
<HetTerm> | ||
Indigenous | ||
</HetTerm> replaces the source label ‘American Indian and Alaska Native’. | ||
</li> | ||
</ul> | ||
|
||
</aside> | ||
) | ||
} |