From 1d0ce634dcde412e6a1afad6a2d5e147e3b4f96a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Mon, 18 Dec 2023 13:45:51 +0300 Subject: [PATCH] Fixed #14386 --- src/app/components/table/table.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/table/table.ts b/src/app/components/table/table.ts index 62dd1599465..74b8fcb7cb9 100644 --- a/src/app/components/table/table.ts +++ b/src/app/components/table/table.ts @@ -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);