Skip to content

Commit

Permalink
Fixed #14386
Browse files Browse the repository at this point in the history
  • Loading branch information
cetincakiroglu committed Dec 18, 2023
1 parent d9c7b60 commit 1d0ce63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/table/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2616,7 +2616,7 @@ export class Table implements OnInit, AfterViewInit, AfterContentInit, Blockable
}
}

if (this.resizableColumns && this.resizeColumnElement && this.resizeColumnElement.isSameNode(this.draggedColumn)) {
if (this.resizableColumns && this.resizeColumnElement) {
let width = this.columnResizeMode === 'expand' ? this._initialColWidths : this._totalTableWidth();
ObjectUtils.reorderArray(width, dragIndex + 1, dropIndex + 1);
this.updateStyleElement(width, dragIndex, null, null);
Expand Down

0 comments on commit 1d0ce63

Please sign in to comment.