You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Uncaught TypeError: Cannot read property 'querySelector' of undefined
at getNodeXml (qp.js:115)
at Node.get [as nodeXml] (qp.js:268)
at Node.get [as relOp] (qp.js:278)
at nodeToThickness (qp.js:533)
at Array.map (<anonymous>)
at drawLinesForParent (qp.js:547)
at Object.drawLines (qp.js:490)
This happens because findAncestor(this.element, "qp-root").parentElement["xml"] is undefined as it is only set in QP.showPlan:
container["xml"] = new DOMParser().parseFromString(planXml, "text/xml");
but not in QP.drawLines
The text was updated successfully, but these errors were encountered:
Here is the full error:
This happens because
findAncestor(this.element, "qp-root").parentElement["xml"]
is undefined as it is only set inQP.showPlan
:container["xml"] = new DOMParser().parseFromString(planXml, "text/xml");
but not in
QP.drawLines
The text was updated successfully, but these errors were encountered: