Skip to content

Commit 3f7c254

Browse files
Merge health and social care works in national flu eligibility options (#440)
Reduced list of eligibility options from 8 to 7 by combining 'Healthcare worker' and 'Social care worker' into: 'Health or social care worker' The "What is their role?" question now asked whenever 'Health or social care worker' is selected: <img width="729" height="499" alt="Screenshot 2025-08-28 at 13 14 22" src="https://github.com/user-attachments/assets/6cf10611-7220-4846-b10d-3b623d010ea1" /> --------- Co-authored-by: Frankie Roberto <[email protected]> Co-authored-by: Frankie Roberto <[email protected]>
1 parent 9598d7b commit 3f7c254

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

app/routes/record-vaccinations.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ module.exports = router => {
563563
}
564564

565565
} else if (data.vaccine == "flu") {
566-
if (data.eligibility === "Healthcare worker") {
566+
if (data.eligibility === "Health or social care worker") {
567567
nextPage = "/record-vaccinations/healthcare-worker"
568568
} else {
569569
nextPage = "/record-vaccinations/patient"

app/views/record-vaccinations/eligibility.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,11 @@
2121

2222
{% set NationalFluEligibilityOptions = [
2323
"Based on age",
24-
"Healthcare worker",
24+
"Health or social care worker",
2525
"Pregnant",
2626
"In a clinical risk group",
2727
"Resident in a care home",
2828
"Carer",
29-
"Social care worker",
3029
"Household contact of someone immunosuppressed"
3130
] %}
3231

0 commit comments

Comments
 (0)