Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Frontend: Remove leading hashes #3687

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const ethnicityDefinitions: DataItem = {
definitions: [
{
key: 'Hispanic/Latino',
path: '#race-eth-hispanic',
path: 'race-eth-hispanic',
description: 'Any race(s), Hispanic/Latino.',
resource: GLOSSARY_LINK + '#hisp-resources',
considerations: [
Expand All @@ -40,7 +40,7 @@ export const raceDefinitions: DataItem = {
definitions: [
{
key: 'Indigenous',
path: '#race-eth-aian',
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. Many of our data sources report this category as “American Indian and Alaska Native”.',
resource: GLOSSARY_LINK + '#aian-resources',
Expand All @@ -55,7 +55,7 @@ export const raceDefinitions: DataItem = {
},
{
key: 'Asian',
path: '#race-eth-asian',
path: 'race-eth-asian',
description:
'A person having origins in any of the original peoples of the Far East, Southeast Asia, or the Indian subcontinent including, for example, Cambodia, China, India, Japan, Korea, Malaysia, Pakistan, the Philippine Islands, Thailand, and Vietnam.',
resource: GLOSSARY_LINK + '#api-resources',
Expand All @@ -70,7 +70,7 @@ export const raceDefinitions: DataItem = {
},
{
key: 'Native Hawaiian or Other Pacific Islander',
path: '#race-eth-nhpi',
path: 'race-eth-nhpi',
description:
'A person having origins in any of the original peoples of Hawaii, Guam, Samoa, or other Pacific Islands.',
considerations: [
Expand All @@ -85,26 +85,26 @@ export const raceDefinitions: DataItem = {
},
{
key: 'Black or African American',
path: '#race-eth-black',
path: 'race-eth-black',
description:
'A person having origins in any of the Black racial groups of Africa.',
},

{
key: 'Unrepresented race',
path: '#race-eth-other',
path: 'race-eth-other',
description:
'A single race not tabulated by the CDC. Individuals not identifying as one of the distinct races listed in the source data are grouped together as “Some other race”. This is a problem as it obscures racial identity for many individuals. In our effort to take transformative action towards achieving health equity the Satcher Health Leadership Institute has decided to rename this category on our reports to highlight it as a health equity issue. For PrEP coverage, Unrepresented race is used to recognize individuals who do not identify as part of the Black, White, or Hispanic ethnic or racial groups.',
},
{
key: 'Two or more races',
path: '#race-eth-multi',
path: 'race-eth-multi',
description:
'Combinations of two or more of the following race categories: "White," "Black or African American," American Indian or Alaska Native," "Asian," Native Hawaiian or Other Pacific Islander," or "Some Other Race". We have chosen to use the term "Two or more races" rather than "Multiracial" as some data sources have used.',
},
{
key: 'Two or more races & Unrepresented race',
path: '#race-eth-multi-or-other',
path: 'race-eth-multi-or-other',
description:
'People who are either multiple races or a single race not represented by the data source’s categorization.',
considerations: [
Expand All @@ -118,7 +118,7 @@ export const raceDefinitions: DataItem = {
},
{
key: 'White',
path: '#race-eth-white',
path: 'race-eth-white',
description:
'A person having origins in any of the original peoples of Europe, the Middle East, or North Africa.',
considerations: [
Expand All @@ -138,7 +138,7 @@ export const moreNonStandardDefinitions: DataItem = {
definitions: [
{
key: 'Middle Eastern / North African (MENA)',
path: '#race-eth-mena',
path: 'race-eth-mena',
description:
'Race/ethnicity grouping collected by CAWP but not currently collected by the U.S. Census.',
considerations: [
Expand All @@ -153,7 +153,7 @@ export const moreNonStandardDefinitions: DataItem = {
},
{
key: 'Asian, Native Hawaiian, and Pacific Islander; Asian American & Pacific Islander; Native American, Alaska Native, & Native Hawaiian',
path: '#race-eth-aian-api',
path: 'race-eth-aian-api',
description:
'Various composite groups used primarily by the CAWP dataset to represent non-standard race/ethnicity data reporting.',
considerations: [
Expand All @@ -168,7 +168,7 @@ export const moreNonStandardDefinitions: DataItem = {

{
key: 'Unknown',
path: '#race-eth-unknown',
path: 'race-eth-unknown',
description:
'Cases of a topic condition that were recorded, but which did not provide complete race/ethnicity information.',
considerations: [
Expand All @@ -182,7 +182,7 @@ export const moreNonStandardDefinitions: DataItem = {
},
{
key: 'All',
path: '#race-eth-all',
path: 'race-eth-all',
description:
'Any race or ethnicity, including cases of a topic with unknown race/ethnicity.',
considerations: [
Expand Down
Loading
Loading