Skip to content
Snippets Groups Projects
Unverified Commit 445da0e1 authored by Paul Rosenzweig's avatar Paul Rosenzweig Committed by GitHub
Browse files

reliably remove mouse blocker div (#10964)

parent 199280d8
No related merge requests found
......@@ -72,8 +72,8 @@ export default class CardRenderer extends Component {
this._deregisterChart();
// reset the DOM:
for (const child of parent.children) {
parent.removeChild(child);
while (parent.firstChild) {
parent.removeChild(parent.firstChild);
}
// create a new container element
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment