File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 287
287
<td >{{ loop .index }}</td >
288
288
<td >
289
289
<span class =" text-small" >
290
- {% set line_number = trace .line | default (1 ) %}
290
+ {% set line_number = trace .line | default (query . backtrace [ loop . index ].line| default ( 1 ) ) %}
291
291
{% if trace .file is defined %}
292
292
<a href =" {{ trace .file | file_link(line_number ) }}" >
293
293
{% endif %}
294
- {{- trace . class | default ~ (trace .class is defined ? trace .type | default (' ::' )) -}}
295
- <span class =" status-warning" >{{ trace .function }}</span >
294
+ {{- query . backtrace [ loop . index ]. class| default ~ (query . backtrace [ loop . index ] .class is defined ? trace .type | default (' ::' )) -}}
295
+ <span class =" status-warning" >{{ query . backtrace [ loop . index ].function | default ( trace .function ) }}</span >
296
296
{% if trace .file is defined %}
297
297
</a >
298
298
{% endif %}
440
440
{% set contains_errors = collector .mappingErrors [manager ] is defined and collector .mappingErrors [manager ][class .class ] is defined %}
441
441
<tr class =" {{ contains_errors ? ' status-error' }}" >
442
442
<td >
443
- <a href =" {{ class .file | file_link(class .line ) }}" >{{ class . class }}</a >
444
- </td >
443
+ <a href =" {{ class .file | file_link(class .line ) }}" >{{ class . class }}</a >
444
+ </td >
445
445
<td class =" font-normal" >
446
446
{% if contains_errors %}
447
447
<ul >
You can’t perform that action at this time.
0 commit comments