From b92bfb5cee51e498f4bd3911432e0be0779e2af7 Mon Sep 17 00:00:00 2001 From: Adrian Gaudebert Date: Fri, 29 Apr 2016 19:53:33 +0200 Subject: [PATCH] Fixes bug 1205068 - Added line numbers after files in threads in report/index page. (#3310) --- .../crashstats/jinja2/crashstats/report_index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webapp-django/crashstats/crashstats/jinja2/crashstats/report_index.html b/webapp-django/crashstats/crashstats/jinja2/crashstats/report_index.html index 030d222e3a..f8ee670987 100644 --- a/webapp-django/crashstats/crashstats/jinja2/crashstats/report_index.html +++ b/webapp-django/crashstats/crashstats/jinja2/crashstats/report_index.html @@ -427,7 +427,7 @@

Crashing Thread ({{ parsed_dump.crash_info.crashing_thread }})

{{ frame.signature }} {% if frame.source_link %} - {{ frame.file }} + {{ frame.file }}:{{ frame.line }} {% else %} @@ -469,10 +469,10 @@

Thread {{ thread.thread }}

{{ frame.signature }} {% if frame.source_link %} - {{ frame.file }} + {{ frame.file }}:{{ frame.line }} {% else %} - {{ frame.file }} + {{ frame.file }}{% if frame.line %}:{{ frame.line }}{% endif %} {% endif %} {% endfor %}