Skip to content

Commit b4123fe

Browse files
committed
fix casing of the symptom type in the heading/title
1 parent 6847513 commit b4123fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

manage_breast_screening/mammograms/views/symptom_views.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ def get_context_data(self, **kwargs):
4444
{
4545
"back_link_params": self.get_back_link_params(),
4646
"caption": participant.full_name,
47-
"heading": f"Details of the {self.symptom_type_name}",
48-
"page_title": f"Details of the {self.symptom_type_name}",
47+
"heading": f"Details of the {self.symptom_type_name.lower()}",
48+
"page_title": f"Details of the {self.symptom_type_name.lower()}",
4949
},
5050
)
5151

0 commit comments

Comments
 (0)