Hey there, I'm experiencing an issue with dragging and dropping from a tree while filtering. It seems that when I drag and drop without using the filter, the item is removed from the right tree. However, when I apply the filter, the item doesn't get removed.
Check out this video illustrating the problem
<p-tree [value]="data" [draggableNodes]="true" [droppableNodes]="true" [filter]="true" filterBy="label">
<ng-template let-node pTemplate="default">
<div>{{node['label']}}</div>
</ng-template>
</p-tree>
<p-tree [value]="_target" [draggableNodes]="true" [droppableNodes]="true" [filter]="true" filterBy="label">
<ng-template let-node pTemplate="default">
<div>{{node['label']}}</div>
</ng-template>
</p-tree>