Fix error in narrative for CodeableConcept
This commit is contained in:
parent
0677f35847
commit
fee70b1a7a
|
@ -1,7 +1,7 @@
|
|||
<th:block th:if="${not resource.textElement.empty}" th:text="${resource.textElement.value}"/>
|
||||
<th:block th:if="${resource.textElement.empty}">
|
||||
<th:block th:if="${!resource.coding.empty}">
|
||||
<th:block th:if="${!resource.coding[0].displayElement.empty}" th:text="${!resource.coding[0].displayElement.value}"/>
|
||||
<th:block th:if="${!resource.coding[0].displayElement.empty}" th:text="${resource.coding[0].displayElement.value}"/>
|
||||
<th:block th:if="${resource.coding[0].displayElement.empty}">
|
||||
<th:block th:if="${!resource.coding[0].codeElement.empty}">
|
||||
<th:block th:text="${resource.coding[0].codeElement.value}"/>
|
||||
|
|
Loading…
Reference in New Issue