Skip to content

Commit f6fbbdf

Browse files
author
jay7958
committed
fixed out of place " that rendered findings listing incorrectly when active finding was present
1 parent f01265d commit f6fbbdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dojo/templates/dojo/view_test.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ <h4>Findings</h4>
108108
</thead>
109109
<tbody>
110110
{% for finding in findings %}
111-
<tr class="{% if finding.active %}active_finding{% else %}inactive_finding" {% endif %}>
111+
<tr class="{% if finding.active %}active_finding{% else %}inactive_finding{% endif %}">
112112
<td><a href="{% url 'view_finding' finding.id %}">{{ finding.title }}</a></td>
113113
<td>{% if finding.severity == "Critical" or finding.severity == "High" %}
114114
<span class="text-error">

0 commit comments

Comments
 (0)