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
Prev Previous commit
Next Next commit
improved/fixed profiler_dump in call table
  • Loading branch information
ro0NL committed Mar 23, 2017
commit 31d19337dd7f252b012d41e7eb0cf98ac6c3980b
Original file line number Diff line number Diff line change
Expand Up @@ -143,14 +143,12 @@
</tr>
<tr>
<th>Argument</th>
<td>{{ profiler_dump(call.argument, maxDepth=2) }}</td>
<td>{{ profiler_dump(call.value.argument, maxDepth=2) }}</td>
</tr>
<tr>
<th>Results</th>
<td>
{% if call.result != false %}
{{ profiler_dump(call.result, maxDepth=1) }}
{% endif %}
{{ profiler_dump(call.value.result, maxDepth=1) }}
</td>
</tr>
<tr>
Expand Down
0