Skip to content

Commit

Permalink
Fix row update on finish ajax request
Browse files Browse the repository at this point in the history
  • Loading branch information
yceruto committed Feb 25, 2019
1 parent 3895acd commit ff9e494
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -212,11 +212,11 @@
pendingRequests--;
var row = request.DOMNode;
/* Unpack the children from the row */
var profilerCell = row.children[0];
var methodCell = row.children[1];
var statusCodeCell = row.children[3];
var profilerCell = row.children[1];
var methodCell = row.children[2];
var statusCodeCell = row.children[4];
var statusCodeElem = statusCodeCell.children[0];
var durationCell = row.children[5];
var durationCell = row.children[6];
if (request.error) {
row.className = 'sf-ajax-request sf-ajax-request-error';
Expand Down

0 comments on commit ff9e494

Please sign in to comment.