8000 bug #17457 Display Ajax requests from newest to oldest in the toolbar… · symfony/symfony@fee0435 · GitHub
[go: up one dir, main page]

Skip to content

Commit fee0435

Browse files
committed
bug #17457 Display Ajax requests from newest to oldest in the toolbar (javiereguiluz)
This PR was submitted for the master branch but it was merged into the 2.8 branch instead (closes #17457). Discussion ---------- Display Ajax requests from newest to oldest in the toolbar | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | #16831 | License | MIT | Doc PR | - ### Before ![ajax_before](https://cloud.githubusercontent.com/assets/73419/12452801/953133ec-bf90-11e5-94d5-1aa76ef580cb.gif) ### After ![ajax_after](https://cloud.githubusercontent.com/assets/73419/12452806/98ce32c0-bf90-11e5-9302-2e9cc5b72848.gif) Commits ------- 124d150 Display Ajax request from newest to oldest in the toolbar
2 parents 295f5ee + 124d150 commit fee0435

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/base_js.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
var request = requestStack[i];
102102
103103
var row = document.createElement('tr');
104-
rows.appendChild(row);
104+
rows.insertBefore(row, rows.firstChild);
105105
106106
var methodCell = document.createElement('td');
107107
if (request.error) {

0 commit comments

Comments
 (0)
0