Merge pull request #9250 from abpframework/auto-merge/rel-4-3/427

Merge branch dev with rel-4.3
pull/9253/head
liangshiwei 4 years ago committed by GitHub
commit 3d000b1fc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -236,9 +236,11 @@ var abp = abp || {};
var $actionContainer = _createRowAction(aData, column.rowAction, tableInstance);
hideEmptyColumn($actionContainer, tableInstance, colIndex);
var $actionButton = $(cells[colIndex]).find(".abp-action-button");
if ($actionButton.length === 0) {
$(cells[colIndex]).empty().append($actionContainer);
if ($actionContainer) {
var $actionButton = $(cells[colIndex]).find(".abp-action-button");
if ($actionButton.length === 0) {
$(cells[colIndex]).empty().append($actionContainer);
}
}
}
}

Loading…
Cancel
Save