Skip to content

Commit

Permalink
Fixes bug 1205068 - Added line numbers after files in threads in repo…
Browse files Browse the repository at this point in the history
…rt/index page. (#3310)
  • Loading branch information
adngdb authored and Peter Bengtsson committed Apr 29, 2016
1 parent 1bed86c commit b92bfb5
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -427,7 +427,7 @@ <h2>Crashing Thread ({{ parsed_dump.crash_info.crashing_thread }})</h2>
<td title="{{ frame.signature }}">{{ frame.signature }}</td>
{% if frame.source_link %}
<td>
<a href="{{ frame.source_link }}">{{ frame.file }}</a>
<a href="{{ frame.source_link }}">{{ frame.file }}:{{ frame.line }}</a>
</td>
{% else %}
<td>
Expand Down Expand Up @@ -469,10 +469,10 @@ <h2>Thread {{ thread.thread }}</h2>
<td title="{{ frame.signature }}">{{ frame.signature }}</td>
{% if frame.source_link %}
<td>
<a href="{{ frame.source_link }}">{{ frame.file }}</a>
<a href="{{ frame.source_link }}">{{ frame.file }}:{{ frame.line }}</a>
</td>
{% else %}
<td>{{ frame.file }}</td>
<td>{{ frame.file }}{% if frame.line %}:{{ frame.line }}{% endif %}</td>
{% endif %}
</tr>
{% endfor %}
Expand Down

0 comments on commit b92bfb5

Please sign in to comment.