8000 [WebProfilerBundle] Fix Debug toolbar breaks app by xkobal · Pull Request #26368 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[WebProfilerBundle] Fix Debug toolbar breaks app #26368

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 2 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
8000
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Wrong var name
  • Loading branch information
xkobal authored Mar 2, 2018
commit 3b2881210884eda8749a50e62c449356d47efbb0
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
var rows = document.createDocumentFragment();

if (requestStack.length) {
var nbOfAjaxRequest = tbody.rows.length;
var nbOfAjaxRequest = tbodies.rows.length;
if (nbOfAjaxRequest >= 100) {
tbodies.deleteRow(nbOfAjaxRequest - 1);
}
Expand Down
0