We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfec528 commit 3c8bd44Copy full SHA for 3c8bd44
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "mind-elixir",
3
- "version": "4.3.1",
+ "version": "4.3.2",
4
"type": "module",
5
"description": "Mind elixir is a free open source mind map core.",
6
"keywords": [
src/methods.ts
@@ -100,7 +100,7 @@ const methods = {
100
},
101
destroy(this: Partial<MindElixirInstance>) {
102
this.disposable!.forEach(fn => fn())
103
- this.mindElixirBox?.remove()
+ if (this.mindElixirBox) this.mindElixirBox.innerHTML = ''
104
this.mindElixirBox = undefined
105
this.nodeData = undefined
106
this.arrows = undefined
0 commit comments