Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
feature #19815 [WebProfilerBundle] Make the IP address in the profile…
…r header clickable (jameshalsall)

This PR was merged into the 3.3-dev branch.

Discussion
----------

[WebProfilerBundle] Make the IP address in the profiler header clickable

| Q | A |
| --- | --- |
| Branch? | master |
| Bug fix? | no |
| New feature? | yes |
| BC breaks? | no |
| Deprecations? | no |
| Tests pass? | yes |
| License | MIT |

Commits
-------

52606a1 [WebProfilerBundle] Make the IP address in the profiler header clickable to view requests by IP
  • Loading branch information
fabpot committed Feb 14, 2017
2 parents db995df + 52606a1 commit 1079668
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Expand Up @@ -68,7 +68,9 @@
<dd>{{ status_code }}</dd>

<dt>IP</dt>
<dd>{{ profile.ip }}</dd>
<dd>
<a href="{{ path('_profiler_search_results', { token: token, limit: 10, ip: profile.ip }) }}">{{ profile.ip }}</a>
</dd>

<dt>Profiled on</dt>
<dd>{{ profile.time|date('r') }}</dd>
Expand Down
Expand Up @@ -528,7 +528,8 @@ tr.status-warning td {
color: #FFF;
}

#summary dl.metadata {
#summary dl.metadata,
#summary dl.metadata a {
margin: 5px 0 0;
color: rgba(255, 255, 255, 0.75);
}
Expand Down

0 comments on commit 1079668

Please sign in to comment.