aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/formattedText/DashDocView.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2023-05-08 12:27:55 -0400
committerbobzel <zzzman@gmail.com>2023-05-08 12:27:55 -0400
commitdbd531233ea7c10130976127361f84281026a308 (patch)
treef2731d8c96aac08157ac4a2b2e5ea7fef7eda4e2 /src/client/views/nodes/formattedText/DashDocView.tsx
parent2255f2ffd4d9c5818d8d26f1814b315ad914eaa9 (diff)
more fixes for tags - removed #<tag> fields. just use 'tags' now.
Diffstat (limited to 'src/client/views/nodes/formattedText/DashDocView.tsx')
-rw-r--r--src/client/views/nodes/formattedText/DashDocView.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/views/nodes/formattedText/DashDocView.tsx b/src/client/views/nodes/formattedText/DashDocView.tsx
index 648c579d0..c05a30d1a 100644
--- a/src/client/views/nodes/formattedText/DashDocView.tsx
+++ b/src/client/views/nodes/formattedText/DashDocView.tsx
@@ -45,8 +45,7 @@ export class DashDocView {
);
}
destroy() {
- this.root.unmount();
- // ReactDOM.unmountComponentAtNode(this.dom);
+ setTimeout(this.root.unmount);
}
selectNode() {}
}