Skip to content
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 @@ -371,21 +371,21 @@ export default function Identification({
onBlur={handleBlur}
/>
}
label="Temporarily Closed (COVID)"
label="Temporarily Closed"
/>
</Tooltip>
</Grid>
<Grid item xs={12} sm={6}>
<div>
<Label
id="covidNotes"
label="COVID Notes"
tooltipTitle="COVID-related conditions"
label="Closure Notes"
tooltipTitle="Add details about closures or service changes"
/>
<Textarea
id="covidNotes"
name="covidNotes"
placeholder="COVID Notes"
placeholder="Closure Notes"
value={values.covidNotes}
onChange={handleChange}
onBlur={handleBlur}
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Admin/SearchCriteria.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ const SearchCriteria = ({
</Grid>
<Grid item xs={12} sm={4}>
<RadioTrueFalseEither
label="Closed for COVID"
label="Temporarily Closed"
name="isInactiveTemporary"
value={criteria.isInactiveTemporary || "either"}
onChange={setCriterion}
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Admin/SearchCriteriaDisplay.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ function SearchCriteriaDisplay({
key={"CriteriaChip_ClosedForCOVID"}
name="isInactiveTemporary"
value={inactiveTemporaryLabel}
label="Closed for COVID"
label="Temporarily Closed"
/>
);
}
Expand Down
4 changes: 2 additions & 2 deletions client/src/components/Admin/VerificationAdminGridMui.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const adminColumns = [
},
{
field: "inactiveTemporary",
headerName: "Covid Closed",
headerName: "Temp Closed",
renderCell: inactiveFormatter("inactiveTemporary"),
width: 150,
},
Expand Down Expand Up @@ -275,7 +275,7 @@ const dataEntryColumns = [
},
{
field: "inactiveTemporary",
headerName: "Covid Closed",
headerName: "Temp Closed",
renderCell: inactiveFormatter("inactiveTemporary"),
width: 150,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -651,15 +651,15 @@ const StakeholderDetails = ({ onBackClick, isDesktop }) => {
<DetailText>No notes to display.</DetailText>
)}

<MinorHeading>COVID Notes</MinorHeading>
<MinorHeading>Closure Notes</MinorHeading>
{selectedOrganization.covidNotes ? (
<DetailText
dangerouslySetInnerHTML={{
__html: formatEmailPhone(selectedOrganization.covidNotes),
}}
></DetailText>
) : (
<DetailText>No covid notes to display.</DetailText>
<DetailText>No notes to display.</DetailText>
)}

{selectedOrganization.hoursNotes && (
Expand Down
Loading