Skip to content

Commit 46994a1

Browse files
committed
bug symfony#23229 [WebProfilerBundle] Eliminate line wrap on count column (routing) (e-moe)
This PR was merged into the 2.8 branch. Discussion ---------- [WebProfilerBundle] Eliminate line wrap on count column (routing) | Q | A | ------------- | --- | Branch? | 2.8 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | symfony#22959 | License | MIT | Doc PR | n/a Commits ------- 78f1fde [WebProfilerBundle] Eliminate line wrap on count columnt (routing)
2 parents d0065fe + 78f1fde commit 46994a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/WebProfilerBundle/Resources/views/Router/panel.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<tbody>
5555
{% for trace in traces %}
5656
<tr class="{{ trace.level == 1 ? 'status-warning' : trace.level == 2 ? 'status-success' }}">
57-
<td class="font-normal text-muted">{{ loop.index }}</td>
57+
<td class="font-normal text-muted nowrap">{{ loop.index }}</td>
5858
<td>{{ trace.name }}</td>
5959
<td>{{ trace.path }}</td>
6060
<td class="font-normal">

0 commit comments

Comments
 (0)