Merge pull request #875 from RuthAlk/fix_codeableconcept_narrative

Fix error in narrative for CodeableConcept
This commit is contained in:
James Agnew 2018-05-23 06:38:08 -04:00 committed by GitHub
commit cadb51d36c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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}"/>