We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24acf00 commit a887a1eCopy full SHA for a887a1e
Resources/public/css/webui.css
@@ -66,6 +66,12 @@ pre a {
66
word-break: break-all;
67
}
68
69
+.location-list {
70
+ margin: 0;
71
+ padding: 0;
72
+ list-style: none;
73
+}
74
+
75
76
/* Ajax results */
77
.ajax-result {
Resources/views/WebUI/show.html.twig
@@ -74,9 +74,9 @@
{% if message.sourceLocations|length > 0 %}
<hr />
- <ul>
+ <ul class="location-list">
78
{% for location in message.sourceLocations %}
79
- <li><a href="{{ location['full_path']|file_link(location['line']) }}">{{ location['path'] }}</a></li>
+ <li><a href="{{ location['full_path']|file_link(location['line']) }}">{{ location['path'] }} at line {{ location['line'] }} </a></li>
80
{% endfor %}
81
</ul>
82
{% endif %}
0 commit comments