Skip to content

Commit

Permalink
Merge branch '5.4' into 6.2
Browse files Browse the repository at this point in the history
* 5.4:
  Speed up Psalm tests
  [GHA] Improve workflow titles
  [GHA] Improve workflow titles
  Fix fix
  [Notifier] Fix notifier profiler when transport name is null
  [HttpKernel] Fix setting the session on the main request when it's started by a subrequest
  • Loading branch information
nicolas-grekas committed Feb 13, 2023
2 parents 349da3d + 1049403 commit 3f7467b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Resources/views/Collector/notifier.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

{% for transport in events.transports %}
<div class="sf-toolbar-info-piece">
<b>{{ transport }}</b>
<b>{{ transport ?: '<em>Empty Transport Name</em>' }}</b>
<span class="sf-toolbar-status">{{ events.messages(transport)|length }}</span>
</div>
{% endfor %}
Expand Down Expand Up @@ -100,7 +100,7 @@
</div>

{% for transport in events.transports %}
<h3>{{ transport }}</h3>
<h3>{{ transport ?: '<em>Empty Transport Name</em>' }}</h3>

<div class="card-block">
<div class="sf-tabs sf-tabs-sm">
Expand Down

0 comments on commit 3f7467b

Please sign in to comment.