minor #29319 [WebProfilerBundle] Display messenger exception count instead of total count (ro0NL)

This PR was merged into the 4.2-dev branch.

Discussion
----------

[WebProfilerBundle] Display messenger exception count instead of total count

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | yes
| New feature?  | yes
| BC breaks?    | no     <!-- see https://symfony.com/bc -->
| Deprecations? | no
| Tests pass?   | yes    <!-- please add some, will be required by reviewers -->
| Fixed tickets | #...   <!-- #-prefixed issue number(s), if any -->
| License       | MIT
| Doc PR        | symfony/symfony-docs#... <!-- required for new features -->

Each panel hides the count if zero, except messenger:

![image](https://user-images.githubusercontent.com/1047696/48981495-7ae07c80-f0d6-11e8-9dda-f40ce61844d6.png)

Now fixed.

Commits
-------

652c6eba89 [WebProfilerBundle] Hide messenger count if zero
This commit is contained in:
Fabien Potencier 2018-11-26 07:35:16 +01:00
commit e90fb68fd6

View File

@ -33,10 +33,11 @@
<span class="label{{ collector.exceptionsCount ? ' label-status-error' }}{{ collector.messages is empty ? ' disabled' }}">
<span class="icon">{{ include('@WebProfiler/Icon/messenger.svg') }}</span>
<strong>Messages</strong>
<span class="count">
<span>{{ collector.messages|length }}</span>
</span>
{% if collector.exceptionsCount > 0 %}
<span class="count">
<span>{{ collector.exceptionsCount }}</span>
</span>
{% endif %}
</span>
{% endblock %}