summaryrefslogtreecommitdiff
path: root/src/main/resources/templates/report.html
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2023-12-05 14:22:02 +0100
committerPaul-Christian Volkmer2023-12-05 14:24:40 +0100
commitced6609d9ab75b42304df8888b1564a1a1795a5b (patch)
treea3daeea96e190cc60c23c3b51b454da6c95b1f7f /src/main/resources/templates/report.html
parent8dee349c377ebebba7e6a3633f71cf2c3e48183d (diff)
fix: add info severity to data quality report
Diffstat (limited to 'src/main/resources/templates/report.html')
-rw-r--r--src/main/resources/templates/report.html1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/resources/templates/report.html b/src/main/resources/templates/report.html
index d9087bf..4aaad68 100644
--- a/src/main/resources/templates/report.html
+++ b/src/main/resources/templates/report.html
@@ -45,6 +45,7 @@
</thead>
<tbody>
<tr th:each="issue : ${issues}">
+ <td th:if="${issue.severity.value == 'info'}" class="bg-blue"><small>[[ ${issue.severity} ]]</small></td>
<td th:if="${issue.severity.value == 'warning'}" class="bg-yellow"><small>[[ ${issue.severity} ]]</small></td>
<td th:if="${issue.severity.value == 'error'}" class="bg-red"><small>[[ ${issue.severity} ]]</small></td>
<td>[[ ${issue.message} ]]</td>