8000 [WebProfilerBundle] Improve cache panel by ro0NL · Pull Request #22129 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[WebProfilerBundle] Improve cache panel #22129

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 6 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
[WebProfilerBundle] Fix rendering empty cache calls
  • Loading branch information
ro0NL committed Mar 23, 2017
commit d366d290e73fb72eebf49bc1c0ddb5e442b481f3
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,12 @@
</div>
{% endfor %}
</div>
<h4>Calls for '{{ name }}'</h4>

{% if not collector.totals.calls %}
<p>
<em>No calls.</em>
</p>
<h4>Calls for '{{ name }}'</h4>
{% if calls|length == 0 %}
<div class="empty">
<p>No calls</p>
</div>
{% else %}
<table>
<thead>
Expand Down
0