summaryrefslogtreecommitdiff
path: root/src/main/resources/templates
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2024-05-15 17:27:04 +0200
committerPaul-Christian Volkmer2024-05-15 17:27:04 +0200
commite9839c27310bc2e1294efb52c98f2b4f04d35e62 (patch)
tree356b095e410ebcba7b052e93558d31ece46e59a3 /src/main/resources/templates
parent86bee9e2cf5c97d1339d2cde59b3361e88973a7d (diff)
fix: add missing 'fatal' severity
Diffstat (limited to 'src/main/resources/templates')
-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 6f89345..07f987c 100644
--- a/src/main/resources/templates/report.html
+++ b/src/main/resources/templates/report.html
@@ -55,6 +55,7 @@
<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 th:if="${issue.severity.value == 'fatal'}" class="bg-red"><small>[[ ${issue.severity} ]]</small></td>
<td>[[ ${issue.message} ]]</td>
</tr>
</tbody>