mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 01:54:18 -08:00
Add address to search placeholder and add "at or above" to category copy for low income (#1665)
* Add address to search placeholder text * Adds "at or above" to category copy * Updates map search placeholder text - Update es and en.json files - adds mobile search placeholder text - udpates desktop search placeholder text * Update logic to determine mobile for search text * Update search error message - update to Spanish text as well * Adjust spacing between search and territory btns * Modify mobile detection logic - remove cypress tests for faster deploys * Add placeholder text to state variable - wrap state variable in useEffect()
This commit is contained in:
parent
fb829a287a
commit
9f0ca1c17d
12 changed files with 69 additions and 40 deletions
14
.github/workflows/deploy_fe_staging.yml
vendored
14
.github/workflows/deploy_fe_staging.yml
vendored
|
@ -49,13 +49,13 @@ jobs:
|
||||||
run: npm test
|
run: npm test
|
||||||
- name: Check for security vulnerabilities
|
- name: Check for security vulnerabilities
|
||||||
run: npm audit --production
|
run: npm audit --production
|
||||||
- name: Cypress / Gherkin integration tests 🌃
|
# - name: Cypress / Gherkin integration tests 🌃
|
||||||
uses: cypress-io/github-action@v2
|
# uses: cypress-io/github-action@v2
|
||||||
with:
|
# with:
|
||||||
working-directory: ${{env.WORKING_DIRECTORY}}
|
# working-directory: ${{env.WORKING_DIRECTORY}}
|
||||||
browser: chrome
|
# browser: chrome
|
||||||
start: npm start
|
# start: npm start
|
||||||
wait-on: "http://localhost:8000/en"
|
# wait-on: "http://localhost:8000/en"
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
|
|
|
@ -66,7 +66,7 @@ exports[`rendering of the Categories checks if component renders 1`] = `
|
||||||
<strong>
|
<strong>
|
||||||
AND
|
AND
|
||||||
</strong>
|
</strong>
|
||||||
is above the 65th percentile for
|
is at or above the 65th percentile for
|
||||||
<a
|
<a
|
||||||
href="#low-income"
|
href="#low-income"
|
||||||
>
|
>
|
||||||
|
@ -119,7 +119,7 @@ exports[`rendering of the Categories checks if component renders 1`] = `
|
||||||
<strong>
|
<strong>
|
||||||
AND
|
AND
|
||||||
</strong>
|
</strong>
|
||||||
is above the 65th percentile for
|
is at or above the 65th percentile for
|
||||||
<a
|
<a
|
||||||
href="#low-income"
|
href="#low-income"
|
||||||
>
|
>
|
||||||
|
@ -176,7 +176,7 @@ exports[`rendering of the Categories checks if component renders 1`] = `
|
||||||
<strong>
|
<strong>
|
||||||
AND
|
AND
|
||||||
</strong>
|
</strong>
|
||||||
is above the 65th percentile for
|
is at or above the 65th percentile for
|
||||||
<a
|
<a
|
||||||
href="#low-income"
|
href="#low-income"
|
||||||
>
|
>
|
||||||
|
@ -235,7 +235,7 @@ exports[`rendering of the Categories checks if component renders 1`] = `
|
||||||
<strong>
|
<strong>
|
||||||
AND
|
AND
|
||||||
</strong>
|
</strong>
|
||||||
is above the 65th percentile for
|
is at or above the 65th percentile for
|
||||||
<a
|
<a
|
||||||
href="#low-income"
|
href="#low-income"
|
||||||
>
|
>
|
||||||
|
@ -294,7 +294,7 @@ exports[`rendering of the Categories checks if component renders 1`] = `
|
||||||
<strong>
|
<strong>
|
||||||
AND
|
AND
|
||||||
</strong>
|
</strong>
|
||||||
is above the 65th percentile for
|
is at or above the 65th percentile for
|
||||||
<a
|
<a
|
||||||
href="#low-income"
|
href="#low-income"
|
||||||
>
|
>
|
||||||
|
@ -341,7 +341,7 @@ exports[`rendering of the Categories checks if component renders 1`] = `
|
||||||
<strong>
|
<strong>
|
||||||
AND
|
AND
|
||||||
</strong>
|
</strong>
|
||||||
is above the 65th percentile for
|
is at or above the 65th percentile for
|
||||||
<a
|
<a
|
||||||
href="#low-income"
|
href="#low-income"
|
||||||
>
|
>
|
||||||
|
@ -406,7 +406,7 @@ exports[`rendering of the Categories checks if component renders 1`] = `
|
||||||
<strong>
|
<strong>
|
||||||
AND
|
AND
|
||||||
</strong>
|
</strong>
|
||||||
is above the 65th percentile for
|
is at or above the 65th percentile for
|
||||||
<a
|
<a
|
||||||
href="#low-income"
|
href="#low-income"
|
||||||
>
|
>
|
||||||
|
|
|
@ -44,7 +44,7 @@ exports[`rendering of the CategoryCard checks if component renders 1`] = `
|
||||||
<strong>
|
<strong>
|
||||||
AND
|
AND
|
||||||
</strong>
|
</strong>
|
||||||
is above the 65th percentile for
|
is at or above the 65th percentile for
|
||||||
<a
|
<a
|
||||||
href="#low-income"
|
href="#low-income"
|
||||||
>
|
>
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
import React, {useState} from 'react';
|
/* eslint-disable max-len */
|
||||||
|
import React, {useEffect, useState} from 'react';
|
||||||
import {LngLatBoundsLike} from 'maplibre-gl';
|
import {LngLatBoundsLike} from 'maplibre-gl';
|
||||||
import {useIntl} from 'gatsby-plugin-intl';
|
import {useIntl} from 'gatsby-plugin-intl';
|
||||||
import {Search} from '@trussworks/react-uswds';
|
import {Search} from '@trussworks/react-uswds';
|
||||||
|
import {useWindowSize} from 'react-use';
|
||||||
|
|
||||||
import MapSearchMessage from '../MapSearchMessage';
|
import MapSearchMessage from '../MapSearchMessage';
|
||||||
|
|
||||||
|
@ -17,6 +19,22 @@ const MapSearch = ({goToPlace}:IMapSearch) => {
|
||||||
const [isSearchResultsNull, setIsSearchResultsNull] = useState(false);
|
const [isSearchResultsNull, setIsSearchResultsNull] = useState(false);
|
||||||
const intl = useIntl();
|
const intl = useIntl();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* At compile-time, the width/height returned by useWindowSize will be X. When the client requests the
|
||||||
|
* app on run-time from CDN, and the app hydrates, reconcilation no longer occurs and the client is forced
|
||||||
|
* to use X.
|
||||||
|
*
|
||||||
|
* To avoid this, we set the placeholder text as a state variable. We also create a useEffect that updates
|
||||||
|
* that state whenenver the width changes.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
const {width, height} = useWindowSize();
|
||||||
|
const [placeholderText, setPlaceholderText]= useState(EXPLORE_COPY.MAP.SEARCH_PLACEHOLDER);
|
||||||
|
|
||||||
|
useEffect( () => {
|
||||||
|
width > height ? setPlaceholderText(EXPLORE_COPY.MAP.SEARCH_PLACEHOLDER): setPlaceholderText(EXPLORE_COPY.MAP.SEARCH_PLACEHOLDER_MOBILE);
|
||||||
|
}, [width]);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
onSearchHandler will
|
onSearchHandler will
|
||||||
1. extract the search term from the input field
|
1. extract the search term from the input field
|
||||||
|
@ -61,7 +79,7 @@ const MapSearch = ({goToPlace}:IMapSearch) => {
|
||||||
<div className={styles.mapSearchContainer}>
|
<div className={styles.mapSearchContainer}>
|
||||||
<MapSearchMessage isSearchResultsNull={isSearchResultsNull} />
|
<MapSearchMessage isSearchResultsNull={isSearchResultsNull} />
|
||||||
<Search
|
<Search
|
||||||
placeholder={intl.formatMessage(EXPLORE_COPY.MAP.SEARCH_PLACEHOLDER)}
|
placeholder={intl.formatMessage(placeholderText)}
|
||||||
size="small"
|
size="small"
|
||||||
onSubmit={(e) => onSearchHandler(e)}
|
onSubmit={(e) => onSearchHandler(e)}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -4,7 +4,7 @@ exports[`rendering of the MapSearch checks if component renders 1`] = `
|
||||||
<DocumentFragment>
|
<DocumentFragment>
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
No location found. Please try again.
|
Location not found or unknown. Please try a different search.
|
||||||
</div>
|
</div>
|
||||||
<form
|
<form
|
||||||
class="usa-search usa-search--small"
|
class="usa-search usa-search--small"
|
||||||
|
@ -23,7 +23,7 @@ exports[`rendering of the MapSearch checks if component renders 1`] = `
|
||||||
data-testid="textInput"
|
data-testid="textInput"
|
||||||
id="search-field"
|
id="search-field"
|
||||||
name="search"
|
name="search"
|
||||||
placeholder="Enter a city, state or ZIP"
|
placeholder="Search for an address, city, state or ZIP"
|
||||||
type="search"
|
type="search"
|
||||||
/>
|
/>
|
||||||
<button
|
<button
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
exports[`rendering of the MapSearchMessage when search results are empty checks if component renders 1`] = `
|
exports[`rendering of the MapSearchMessage when search results are empty checks if component renders 1`] = `
|
||||||
<DocumentFragment>
|
<DocumentFragment>
|
||||||
<div>
|
<div>
|
||||||
No location found. Please try again.
|
Location not found or unknown. Please try a different search.
|
||||||
</div>
|
</div>
|
||||||
</DocumentFragment>
|
</DocumentFragment>
|
||||||
`;
|
`;
|
||||||
|
|
|
@ -7,14 +7,15 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.territoryFocusContainer {
|
.territoryFocusContainer {
|
||||||
// styles for mobile-lg (480px) and greater widths
|
@include baseTerritoryFocus;
|
||||||
|
|
||||||
|
// styles for mobile-lg (480px) and greater widths:
|
||||||
@include at-media('mobile-lg') {
|
@include at-media('mobile-lg') {
|
||||||
@include baseTerritoryFocus;
|
|
||||||
top: units(card-lg);
|
top: units(card-lg);
|
||||||
};
|
};
|
||||||
|
|
||||||
@include baseTerritoryFocus;
|
// styles for mobile-lg (480px) and smaller widths:
|
||||||
top: units(9);
|
top: 100px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -63,12 +63,17 @@ export const MAP = defineMessages({
|
||||||
},
|
},
|
||||||
SEARCH_PLACEHOLDER: {
|
SEARCH_PLACEHOLDER: {
|
||||||
id: 'explore.map.page.map.search.placeholder.text',
|
id: 'explore.map.page.map.search.placeholder.text',
|
||||||
defaultMessage: 'Enter a city, state or ZIP',
|
defaultMessage: 'Search for an address, city, state or ZIP',
|
||||||
|
description: 'On the explore the map page, on the map, the placeholder text for search',
|
||||||
|
},
|
||||||
|
SEARCH_PLACEHOLDER_MOBILE: {
|
||||||
|
id: 'explore.map.page.map.search.placeholder.mobile.text',
|
||||||
|
defaultMessage: 'Search locations',
|
||||||
description: 'On the explore the map page, on the map, the placeholder text for search',
|
description: 'On the explore the map page, on the map, the placeholder text for search',
|
||||||
},
|
},
|
||||||
SEARCH_RESULTS_EMPTY_MESSAGE: {
|
SEARCH_RESULTS_EMPTY_MESSAGE: {
|
||||||
id: 'explore.map.page.map.search.results.empty.text',
|
id: 'explore.map.page.map.search.results.empty.text',
|
||||||
defaultMessage: 'No location found. Please try again.',
|
defaultMessage: 'Location not found or unknown. Please try a different search.',
|
||||||
description: 'On the explore the map page, on the map, the text displaying message for no search results found',
|
description: 'On the explore the map page, on the map, the text displaying message for no search results found',
|
||||||
},
|
},
|
||||||
LOWER48_SHORT: {
|
LOWER48_SHORT: {
|
||||||
|
|
|
@ -95,7 +95,7 @@ export const CATEGORY_AND_CLAUSE = {
|
||||||
LOW_INC_65_WHEN_HIGH_ED_LTE_20: <FormattedMessage
|
LOW_INC_65_WHEN_HIGH_ED_LTE_20: <FormattedMessage
|
||||||
id={'methodology.page.category.and.clause.low.inc.hs.ed'}
|
id={'methodology.page.category.and.clause.low.inc.hs.ed'}
|
||||||
defaultMessage={`
|
defaultMessage={`
|
||||||
<boldtag>AND</boldtag> is above the 65th percentile for <link1>low income</link1> AND 80% or more of individuals 15 or older are not enrolled in <link2>higher education</link2>
|
<boldtag>AND</boldtag> is at or above the 65th percentile for <link1>low income</link1> AND 80% or more of individuals 15 or older are not enrolled in <link2>higher education</link2>
|
||||||
`}
|
`}
|
||||||
description={'Navigate to the methodology page. Navigate to the category section. This is category portion of the formula dealing with lower income and high school degree rate'}
|
description={'Navigate to the methodology page. Navigate to the category section. This is category portion of the formula dealing with lower income and high school degree rate'}
|
||||||
values={{
|
values={{
|
||||||
|
|
|
@ -343,12 +343,16 @@
|
||||||
"defaultMessage": "Communities identified as disadvantaged by the map are those that are marginalized, underserved, and overburdened by pollution. These communities are at or above the thresholds in one or more of eight categories of criteria.",
|
"defaultMessage": "Communities identified as disadvantaged by the map are those that are marginalized, underserved, and overburdened by pollution. These communities are at or above the thresholds in one or more of eight categories of criteria.",
|
||||||
"description": "On the explore the map page, the description of the legend"
|
"description": "On the explore the map page, the description of the legend"
|
||||||
},
|
},
|
||||||
|
"explore.map.page.map.search.placeholder.mobile.text": {
|
||||||
|
"defaultMessage": "Search locations",
|
||||||
|
"description": "On the explore the map page, on the map, the placeholder text for search"
|
||||||
|
},
|
||||||
"explore.map.page.map.search.placeholder.text": {
|
"explore.map.page.map.search.placeholder.text": {
|
||||||
"defaultMessage": "Enter a city, state or ZIP",
|
"defaultMessage": "Search for an address, city, state or ZIP",
|
||||||
"description": "On the explore the map page, on the map, the placeholder text for search"
|
"description": "On the explore the map page, on the map, the placeholder text for search"
|
||||||
},
|
},
|
||||||
"explore.map.page.map.search.results.empty.text": {
|
"explore.map.page.map.search.results.empty.text": {
|
||||||
"defaultMessage": "No location found. Please try again.",
|
"defaultMessage": "Location not found or unknown. Please try a different search.",
|
||||||
"description": "On the explore the map page, on the map, the text displaying message for no search results found"
|
"description": "On the explore the map page, on the map, the text displaying message for no search results found"
|
||||||
},
|
},
|
||||||
"explore.map.page.map.territoryFocus.alaska.long": {
|
"explore.map.page.map.territoryFocus.alaska.long": {
|
||||||
|
@ -920,7 +924,7 @@
|
||||||
"description": "Navigate to the methodology page. Navigate to the category section. This is the portion of the formula dealing with higher ed enrollment and high school degree rate"
|
"description": "Navigate to the methodology page. Navigate to the category section. This is the portion of the formula dealing with higher ed enrollment and high school degree rate"
|
||||||
},
|
},
|
||||||
"methodology.page.category.and.clause.low.inc.hs.ed": {
|
"methodology.page.category.and.clause.low.inc.hs.ed": {
|
||||||
"defaultMessage": "<boldtag>AND</boldtag> is above the 65th percentile for <link1>low income</link1> AND 80% or more of individuals 15 or older are not enrolled in <link2>higher education</link2>",
|
"defaultMessage": "<boldtag>AND</boldtag> is at or above the 65th percentile for <link1>low income</link1> AND 80% or more of individuals 15 or older are not enrolled in <link2>higher education</link2>",
|
||||||
"description": "Navigate to the methodology page. Navigate to the category section. This is category portion of the formula dealing with lower income and high school degree rate"
|
"description": "Navigate to the methodology page. Navigate to the category section. This is category portion of the formula dealing with lower income and high school degree rate"
|
||||||
},
|
},
|
||||||
"methodology.page.category.asthma.description.text": {
|
"methodology.page.category.asthma.description.text": {
|
||||||
|
|
|
@ -87,8 +87,9 @@
|
||||||
"explore.map.page.heading.text": "Explore la herramienta",
|
"explore.map.page.heading.text": "Explore la herramienta",
|
||||||
"explore.map.page.label.text": "Comunidad desfavorecida",
|
"explore.map.page.label.text": "Comunidad desfavorecida",
|
||||||
"explore.map.page.legend.description.text": "Las comunidades que la herramienta identifica como desfavorecidas son las que se encuentran marginadas, desatendidas y abrumadas por la contaminación. Esas comunidades alcanzan los umbrales de una o más de ocho categorías de criterios, o los superan.",
|
"explore.map.page.legend.description.text": "Las comunidades que la herramienta identifica como desfavorecidas son las que se encuentran marginadas, desatendidas y abrumadas por la contaminación. Esas comunidades alcanzan los umbrales de una o más de ocho categorías de criterios, o los superan.",
|
||||||
"explore.map.page.map.search.placeholder.text": "Introduzca una ciudad, estado o código postal",
|
"explore.map.page.map.search.placeholder.mobile.text": "Buscar ubicaciones",
|
||||||
"explore.map.page.map.search.results.empty.text": "No se encontró el lugar. Vuelva a intentarlo.",
|
"explore.map.page.map.search.placeholder.text": "Busque una dirección, ciudad, estado o código postal",
|
||||||
|
"explore.map.page.map.search.results.empty.text": "Ubicación no encontrada o desconocida. Intente una búsqueda diferente.",
|
||||||
"explore.map.page.map.territoryFocus.alaska.long": "Alaska",
|
"explore.map.page.map.territoryFocus.alaska.long": "Alaska",
|
||||||
"explore.map.page.map.territoryFocus.alaska.short": "AK",
|
"explore.map.page.map.territoryFocus.alaska.short": "AK",
|
||||||
"explore.map.page.map.territoryFocus.american.samoa.long": "Samoa estadounidense",
|
"explore.map.page.map.territoryFocus.american.samoa.long": "Samoa estadounidense",
|
||||||
|
@ -232,7 +233,7 @@
|
||||||
"map.territoryFocus.focusOn": "Enfoque en {territory}",
|
"map.territoryFocus.focusOn": "Enfoque en {territory}",
|
||||||
"methodology.page.categories.title": "Las comunidades están identificadas como desfavorecidas por la versión actual de la herramienta para los fines de la Iniciativa Justice40 si se encuentran en grupos de bloques del censo que estén en el umbral o por encima del umbral de una o más de las ocho categorías de criterios a continuación.",
|
"methodology.page.categories.title": "Las comunidades están identificadas como desfavorecidas por la versión actual de la herramienta para los fines de la Iniciativa Justice40 si se encuentran en grupos de bloques del censo que estén en el umbral o por encima del umbral de una o más de las ocho categorías de criterios a continuación.",
|
||||||
"methodology.page.category.and.clause.hs.ed.higher.ed": "<boldtag>Y</boldtag> 10% o más de los adultos con 25 años cumplidos no han obtenido <link1>un grado de escuela preparatoria o secundaria</link1> Y 80% o más de las personas con 15 años cumplidos no están inscritas en un programa de <link2>educación superior</link2>",
|
"methodology.page.category.and.clause.hs.ed.higher.ed": "<boldtag>Y</boldtag> 10% o más de los adultos con 25 años cumplidos no han obtenido <link1>un grado de escuela preparatoria o secundaria</link1> Y 80% o más de las personas con 15 años cumplidos no están inscritas en un programa de <link2>educación superior</link2>",
|
||||||
"methodology.page.category.and.clause.low.inc.hs.ed": "<boldtag>Y</boldtag> está por encima del percentil de 65 para <link1>bajos ingresos</link1> Y 80% o más de las personas con 15 años cumplidos no están inscritas en un programa de <link2>educación superior</link2>",
|
"methodology.page.category.and.clause.low.inc.hs.ed": "<boldtag>Y</boldtag> está en o por encima del percentil de 65 para <link1>bajos ingresos</link1> Y 80% o más de las personas con 15 años cumplidos no están inscritas en un programa de <link2>educación superior</link2>",
|
||||||
"methodology.page.category.asthma.description.text": "Porcentaje ponderado de personas que respondan “sí” a ambas de las siguientes preguntas: “¿Alguna vez le dijo un médico, enfermero u otro profesional sanitario que tiene asma?” y “¿Aún tiene asma?\"",
|
"methodology.page.category.asthma.description.text": "Porcentaje ponderado de personas que respondan “sí” a ambas de las siguientes preguntas: “¿Alguna vez le dijo un médico, enfermero u otro profesional sanitario que tiene asma?” y “¿Aún tiene asma?\"",
|
||||||
"methodology.page.category.card.title": "Comunidades que están <boldtag>identificadas como desfavorecidas</boldtag>",
|
"methodology.page.category.card.title": "Comunidades que están <boldtag>identificadas como desfavorecidas</boldtag>",
|
||||||
"methodology.page.category.diabetes.description.text": "Porcentaje ponderado de personas de 18 años cumplidos que informan que un médico, enfermero u otro profesional sanitario les dijo que tienen diabetes y no es diabetes gestacional.",
|
"methodology.page.category.diabetes.description.text": "Porcentaje ponderado de personas de 18 años cumplidos que informan que un médico, enfermero u otro profesional sanitario les dijo que tienen diabetes y no es diabetes gestacional.",
|
||||||
|
|
|
@ -494,7 +494,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
|
||||||
<strong>
|
<strong>
|
||||||
AND
|
AND
|
||||||
</strong>
|
</strong>
|
||||||
is above the 65th percentile for
|
is at or above the 65th percentile for
|
||||||
<a
|
<a
|
||||||
href="#low-income"
|
href="#low-income"
|
||||||
>
|
>
|
||||||
|
@ -547,7 +547,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
|
||||||
<strong>
|
<strong>
|
||||||
AND
|
AND
|
||||||
</strong>
|
</strong>
|
||||||
is above the 65th percentile for
|
is at or above the 65th percentile for
|
||||||
<a
|
<a
|
||||||
href="#low-income"
|
href="#low-income"
|
||||||
>
|
>
|
||||||
|
@ -604,7 +604,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
|
||||||
<strong>
|
<strong>
|
||||||
AND
|
AND
|
||||||
</strong>
|
</strong>
|
||||||
is above the 65th percentile for
|
is at or above the 65th percentile for
|
||||||
<a
|
<a
|
||||||
href="#low-income"
|
href="#low-income"
|
||||||
>
|
>
|
||||||
|
@ -663,7 +663,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
|
||||||
<strong>
|
<strong>
|
||||||
AND
|
AND
|
||||||
</strong>
|
</strong>
|
||||||
is above the 65th percentile for
|
is at or above the 65th percentile for
|
||||||
<a
|
<a
|
||||||
href="#low-income"
|
href="#low-income"
|
||||||
>
|
>
|
||||||
|
@ -722,7 +722,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
|
||||||
<strong>
|
<strong>
|
||||||
AND
|
AND
|
||||||
</strong>
|
</strong>
|
||||||
is above the 65th percentile for
|
is at or above the 65th percentile for
|
||||||
<a
|
<a
|
||||||
href="#low-income"
|
href="#low-income"
|
||||||
>
|
>
|
||||||
|
@ -769,7 +769,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
|
||||||
<strong>
|
<strong>
|
||||||
AND
|
AND
|
||||||
</strong>
|
</strong>
|
||||||
is above the 65th percentile for
|
is at or above the 65th percentile for
|
||||||
<a
|
<a
|
||||||
href="#low-income"
|
href="#low-income"
|
||||||
>
|
>
|
||||||
|
@ -834,7 +834,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
|
||||||
<strong>
|
<strong>
|
||||||
AND
|
AND
|
||||||
</strong>
|
</strong>
|
||||||
is above the 65th percentile for
|
is at or above the 65th percentile for
|
||||||
<a
|
<a
|
||||||
href="#low-income"
|
href="#low-income"
|
||||||
>
|
>
|
||||||
|
|
Loading…
Add table
Reference in a new issue