Linkify ticket titles on tracker page

This commit is contained in:
Drew DeVault 2019-02-22 16:35:22 -05:00
parent 879a3b80fb
commit 4dcda4c690
2 changed files with 7 additions and 1 deletions

View File

@ -75,6 +75,10 @@ select.form-control {
// id title updated submitter comments
grid-template-columns: auto 1fr auto auto auto;
.title a {
color: $black;
}
@include media-breakpoint-down(xs) {
display: block;
border: none;

View File

@ -141,7 +141,9 @@
<a href="{{ ticket|ticket_url }}">#{{ticket.scoped_id}}</a>
</div>
<div class="title">
{{ ticket.title }}
<a href="{{ ticket|ticket_url }}">
{{ ticket.title }}
</a>
<span class="pull-right">
{% for label in ticket.labels %}
{{ label|label_badge(cls="small") }}