Skip to content

Commit ad8fb5b

Browse files
authored
Merge pull request #1808 from valentijnscholten/similar_add_title_tooltip
similar findings: add tooltip to show title
2 parents 59b6fcc + 77b3179 commit ad8fb5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dojo/templates/dojo/view_finding.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ <h4>Similar Findings<span class="pull-right"><a data-toggle="collapse" href="#si
314314
{% for similar in findings %}
315315
<tr>
316316
<td>
317-
<a href="{% url 'view_finding' similar.id %}">{{ similar.date }}</a>
317+
<a target="#" data-toggle="tooltip" data-placement="bottom" title="{{ similar.title }}" href="{% url 'view_finding' similar.id %}">{{ similar.date }}</a>
318318
{% with similar.notes.count as note_count %}
319319
({{ note_count }} note{{ note_count|pluralize }})
320320
{% endwith %}

0 commit comments

Comments
 (0)