fix bug caused by changing DiagnosticReport.conclusion to markdown
This commit is contained in:
parent
38a55d261d
commit
1b86b29d1f
|
@ -125,8 +125,12 @@ public class DiagnosticReportRenderer extends ResourceRenderer {
|
||||||
|
|
||||||
pw = getProperty(dr, "conclusion");
|
pw = getProperty(dr, "conclusion");
|
||||||
if (valued(pw)) {
|
if (valued(pw)) {
|
||||||
|
if (pw.fhirType().equals("markdown")) {
|
||||||
|
render(x, pw.value());
|
||||||
|
} else {
|
||||||
render(x.para(), pw.value());
|
render(x.para(), pw.value());
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pw = getProperty(dr, "conclusionCode");
|
pw = getProperty(dr, "conclusionCode");
|
||||||
if (!valued(pw)) {
|
if (!valued(pw)) {
|
||||||
|
|
Loading…
Reference in New Issue