diff --git a/arches_references/src/arches_references/components/tree/ListTree.vue b/arches_references/src/arches_references/components/tree/ListTree.vue index 773faee..3e833b0 100644 --- a/arches_references/src/arches_references/components/tree/ListTree.vue +++ b/arches_references/src/arches_references/components/tree/ListTree.vue @@ -231,14 +231,6 @@ function lazyLabelLookup(node: TreeNode) { ).value; } } - -// Factored out because of vue-tsc problems inside the pt object -const ptNodeContent = ({ instance }: TreePassThroughMethodOptions) => { - if (instance.$el && instance.node.key === movingItem.value?.key) { - instance.$el.classList.add("is-adjusting-parent"); - } - return { style: { height: "4rem" } }; -};