From 152e551208e6de534ab194c87e9ffa4d56d294a8 Mon Sep 17 00:00:00 2001 From: Brady Miller Date: Sat, 21 May 2022 21:44:04 -0700 Subject: [PATCH] bug fix d (#5368) --- portal/patient/scripts/app/patientdata.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/portal/patient/scripts/app/patientdata.js b/portal/patient/scripts/app/patientdata.js index 7fb2ab0ae3c..43143351410 100644 --- a/portal/patient/scripts/app/patientdata.js +++ b/portal/patient/scripts/app/patientdata.js @@ -128,7 +128,7 @@ var page = { value = 'Unassigned'; } $('#' + key + 'InputContainer span.help-inline').html( - ''+value+''); + '' + _.escape(value) + ''); $('#' + key + 'InputContainer span.help-inline').show(); } });