Fix tests

This commit is contained in:
James Agnew 2015-09-24 10:10:05 -04:00
parent 3c6299a157
commit bd4d7e276f
1 changed files with 8 additions and 1 deletions

View File

@ -11,7 +11,14 @@
<tr th:each="issue : ${resource.issue}">
<td th:text="${issue.severityElement.value}" style="font-weight: bold;"></td>
<td th:text="${issue.location}"></td>
<td><pre th:text="${issue.diagnostics}"/></td>
<th:block th:switch="${fhirVersion}">
<th:block th:case="'DSTU1'">
<td><pre th:text="${issue.details}"/></td>
</th:block>
<th:block th:case="*">
<td><pre th:text="${issue.diagnostics}"/></td>
</th:block>
</th:block>
</tr>
</table>
</div>