diff --git a/frontend/src/cards/CardWrapper.tsx b/frontend/src/cards/CardWrapper.tsx index 1d539c1b8a..469a2415b1 100644 --- a/frontend/src/cards/CardWrapper.tsx +++ b/frontend/src/cards/CardWrapper.tsx @@ -74,7 +74,7 @@ function CardWrapper(props: { {props.children(queryResponses, metadata, geoData)} {!props.hideFooter && props.queries && (

<>{optionalDefinition} + <>{showNhFootnote ? 'Note. (NH) indicates ‘Non-Hispanic’. ' : ''} View{' '} methodology @@ -110,24 +109,12 @@ export function Sources(props: SourcesProps) { .

- {/* NH note (if needed) listed first, full-width */} -
- {showNhFootnote && ( -

- Note. NH: Non-Hispanic. To promote inclusion, we replace the source - data labels ‘Multiracial’ with ‘Two or more races’, - and ‘Some other’ with ‘Unrepresented’.{' '} -

- )} -
-
- + ) } diff --git a/frontend/src/pages/Methodology/methodologyContent/RacesAndEthnicitiesDefinitions.ts b/frontend/src/pages/Methodology/methodologyContent/RacesAndEthnicitiesDefinitions.ts index 384f7fd9cd..fe602accc8 100644 --- a/frontend/src/pages/Methodology/methodologyContent/RacesAndEthnicitiesDefinitions.ts +++ b/frontend/src/pages/Methodology/methodologyContent/RacesAndEthnicitiesDefinitions.ts @@ -1,8 +1,4 @@ -import { Helmet } from 'react-helmet-async' import { GLOSSARY_LINK } from '../../../utils/internalRoutes' -import HetNotice from '../../../styles/HetComponents/HetNotice' -import HetTerm from '../../../styles/HetComponents/HetTerm' -import { urlMap } from '../../../utils/externalUrls' export interface DataItem { topic: string @@ -54,14 +50,14 @@ export const raceDefinitions: DataItem = key: 'Indigenous', path: '#race-eth-aian', description: - 'A person having origins in any of the original peoples of North and South America (including Central America), who maintains tribal affiliation or community attachment.', + 'A person having origins in any of the original peoples of North and South America (including Central America), who maintains tribal affiliation or community attachment. Many of our data sources report this category as “American Indian and Alaska Native”.', resource: GLOSSARY_LINK + '#aian-resources', considerations: [ { title: 'General Considerations', points: [ - 'Many states do not record data for the Indigenous racial categories, often grouping these individuals into other categories.', + 'Many states do not record data for “Indigenous” or “American Indian and Alaska Native”, often grouping these individuals into other categories.', ], }, ], @@ -105,9 +101,6 @@ export const raceDefinitions: DataItem = 'A person having origins in any of the Black racial groups of Africa.', }, - - - { key: 'Unrepresented race', path: '#race-eth-other', diff --git a/frontend/src/reports/ReportProvider.tsx b/frontend/src/reports/ReportProvider.tsx index b894ae3bd2..1d5e5d342c 100644 --- a/frontend/src/reports/ReportProvider.tsx +++ b/frontend/src/reports/ReportProvider.tsx @@ -15,13 +15,13 @@ import { } from '../data/config/MetricConfig' import DefinitionsList from './ui/DefinitionsList' import LifelineAlert from './ui/LifelineAlert' -import LazyLoad from 'react-lazyload' import IncarceratedChildrenLongAlert from './ui/IncarceratedChildrenLongAlert' import { type ScrollableHashId } from '../utils/hooks/useStepObserver' import WhatDataAreMissing from './WhatDataAreMissing' import HetLinkButton from '../styles/HetComponents/HetLinkButton' -import { DATA_CATALOG_PAGE_LINK } from '../utils/internalRoutes' +import { DATA_CATALOG_PAGE_LINK, RACES_AND_ETHNICITIES_LINK } from '../utils/internalRoutes' import AnnouncementBanner from './ui/AnnouncementBanner' +import { RaceRelabelingsList } from './ui/RaceRelabelingsList' export const SINGLE_COLUMN_WIDTH = 12 @@ -166,11 +166,10 @@ function ReportProvider(props: ReportProviderProps) { return ( <>
{props.showLifeLineAlert && } {props.showAnnouncementBanner && } @@ -192,9 +191,12 @@ function ReportProvider(props: ReportProviderProps) { > Definitions: - - - + + + + + See our methodology → +
)} @@ -203,7 +205,7 @@ function ReportProvider(props: ReportProviderProps) {

Unfortunately there are crucial data missing in our sources.

- See Our Data Sources → + See our data sources → } {isWisqars && } -
+

Do you have information that belongs on the Health Equity Tracker?{' '} diff --git a/frontend/src/reports/ui/RaceRelabelingsList.tsx b/frontend/src/reports/ui/RaceRelabelingsList.tsx new file mode 100644 index 0000000000..96a254acb1 --- /dev/null +++ b/frontend/src/reports/ui/RaceRelabelingsList.tsx @@ -0,0 +1,39 @@ +import HetTerm from "../../styles/HetComponents/HetTerm"; + +export function RaceRelabelingsList() { + return ( +

+ ) +} \ No newline at end of file