diff --git a/src/components/Patient/symptoms/SymptomTable.tsx b/src/components/Patient/symptoms/SymptomTable.tsx index 68e3bb1e108..8b9dd9cb973 100644 --- a/src/components/Patient/symptoms/SymptomTable.tsx +++ b/src/components/Patient/symptoms/SymptomTable.tsx @@ -72,14 +72,18 @@ export function SymptomTable({ {symptom.code.display} - - {symptom.severity ? t(symptom.severity) : "-"} - + {symptom.severity ? ( + + {t(symptom.severity)} + + ) : ( + "-" + )}