Skip to content

Commit

Permalink
fix: Fix invalid curl command shown in profiler (#55)
Browse files Browse the repository at this point in the history
[php80]

Co-authored-by: Yoann MOROCUTTI <[email protected]>
  • Loading branch information
ymorocutti and Yoann MOROCUTTI authored Oct 31, 2024
1 parent acb6623 commit 6b8b144
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Resources/views/Collector/partials/call.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
<tbody>
<tr>
<td>
<pre style="white-space: pre-line">{{ call.blackfireCommand | raw }}</pre>
<pre style="white-space: pre-line; word-break: break-word;">{{ call.curlCommand | raw }}</pre>
</td>
</tr>
</tbody>
Expand All @@ -124,7 +124,7 @@
<tbody>
<tr>
<td>
<pre style="white-space: pre-line">{{ call.blackfireCommand | raw }}</pre>
<pre style="white-space: pre-line; word-break: break-word;">{{ call.blackfireCommand | raw }}</pre>
</td>
</tr>
</tbody>
Expand Down

0 comments on commit 6b8b144

Please sign in to comment.