Skip to content

Commit

Permalink
Parvathy | BAH-3514 | Fix. Decode HTML Entities (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
parvathy00 authored Feb 5, 2024
1 parent 970b3ec commit d00b304
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import us.mn.state.health.lims.common.valueholder.ValueHolderInterface;
import us.mn.state.health.lims.note.valueholder.Note;
import us.mn.state.health.lims.testresult.valueholder.TestResult;
import org.apache.commons.lang3.StringEscapeUtils;

import java.util.HashSet;
import java.util.Set;
Expand Down Expand Up @@ -123,7 +124,7 @@ public void setTestResult(TestResult testResult) {
}

public String getValue() {
return value;
return StringEscapeUtils.unescapeHtml4(value);
}

public void setValue(String value) {
Expand Down

0 comments on commit d00b304

Please sign in to comment.