Skip to content

Commit

Permalink
bug fix d (#5368)
Browse files Browse the repository at this point in the history
  • Loading branch information
bradymiller committed May 22, 2022
1 parent f3f5ede commit 152e551
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion portal/patient/scripts/app/patientdata.js
Expand Up @@ -128,7 +128,7 @@ var page = {
value = 'Unassigned';
}
$('#' + key + 'InputContainer span.help-inline').html(
'<a class="editval text-primary" onclick="page.toggleVal(this); return false;" data-tstate=new data-id="'+key+'">'+value+'</a>');
'<a class="editval text-primary" onclick="page.toggleVal(this); return false;" data-tstate=new data-id="' + _.escape(key) + '">' + _.escape(value) + '</a>');
$('#' + key + 'InputContainer span.help-inline').show();
}
});
Expand Down

0 comments on commit 152e551

Please sign in to comment.