Fix mail tree actions

Node was a jQuery object instead of DOMNode
This commit is contained in:
nathan 2022-09-02 14:37:35 -06:00
parent ed87a8039a
commit f6851daf9f

View File

@ -27,7 +27,7 @@ export function dhtmlxTree_getNode(_tree, _itemId) {
{ {
// Get the outer html table node of the tree node - return the first // Get the outer html table node of the tree node - return the first
// "tr" child of the element // "tr" child of the element
return jQuery("tr:first", node.htmlNode); return jQuery("tr:first", node.htmlNode).get(0);
} }
} }