Skip to content

Commit

Permalink
Merge pull request #95 from MeasureAuthoringTool/MAT-7751/bugFixInMOb…
Browse files Browse the repository at this point in the history
…sDescription

MAT-7751 fix escaping of characters in measure obs description
  • Loading branch information
mcmcphillips authored Sep 27, 2024
2 parents 4e6c68c + 9c4c6fc commit 60861bb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/main/java/gov/cms/madie/util/HumanReadableUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,7 @@ public static String getMeasureObservationDescriptions(Measure measure) {
.append("\n");
}
}
if (!allDescriptions.isEmpty()) {
return HumanReadableUtil.escapeHtmlString(allDescriptions.toString().trim());
}
return allDescriptions.toString().trim();
}
return null;
}
Expand Down

0 comments on commit 60861bb

Please sign in to comment.