Fix row update on finish ajax request

This commit is contained in:
Yonel Ceruto 2019-02-25 16:12:18 -05:00
parent 3895acd175
commit ff9e494776

View File

@ -212,11 +212,11 @@
pendingRequests--; pendingRequests--;
var row = request.DOMNode; var row = request.DOMNode;
/* Unpack the children from the row */ /* Unpack the children from the row */
var profilerCell = row.children[0]; var profilerCell = row.children[1];
var methodCell = row.children[1]; var methodCell = row.children[2];
var statusCodeCell = row.children[3]; var statusCodeCell = row.children[4];
var statusCodeElem = statusCodeCell.children[0]; var statusCodeElem = statusCodeCell.children[0];
var durationCell = row.children[5]; var durationCell = row.children[6];
if (request.error) { if (request.error) {
row.className = 'sf-ajax-request sf-ajax-request-error'; row.className = 'sf-ajax-request sf-ajax-request-error';