diff --git a/src/components/TreeView/index.ts b/src/components/TreeView/index.ts index 059ca321..121743f7 100644 --- a/src/components/TreeView/index.ts +++ b/src/components/TreeView/index.ts @@ -194,7 +194,8 @@ class TreeView extends Container { this._allowReordering = args.allowReordering ?? true; this._allowRenaming = args.allowRenaming ?? false; this._dragHandle = new Element({ - class: CLASS_DRAGGED_HANDLE + class: CLASS_DRAGGED_HANDLE, + hidden: true }); this._dragScrollElement = args.dragScrollElement || this; this.append(this._dragHandle);