diff options
author | Eric <ericmabr@gmail.com> | 2023-08-01 13:40:37 -0400 |
---|---|---|
committer | Eric <ericmabr@gmail.com> | 2023-08-01 13:40:37 -0400 |
commit | c059bdf0b2707181b4c6b7bf626f99ac33a81b58 (patch) | |
tree | 6e0aa3f09108790d2e0c2cc40ec88d084e28489c /src/client/views/nodes/MapBox/MapPushpinBox.tsx | |
parent | 94f122332d15b5844a2c46fc78f9a3a3125e7b06 (diff) |
Pin onclick remove fully integrate, working but not tested a lot
Diffstat (limited to 'src/client/views/nodes/MapBox/MapPushpinBox.tsx')
-rw-r--r-- | src/client/views/nodes/MapBox/MapPushpinBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/MapBox/MapPushpinBox.tsx b/src/client/views/nodes/MapBox/MapPushpinBox.tsx index 13fb11054..588bddd1a 100644 --- a/src/client/views/nodes/MapBox/MapPushpinBox.tsx +++ b/src/client/views/nodes/MapBox/MapPushpinBox.tsx @@ -21,7 +21,7 @@ export class MapPushpinBox extends ViewBoxBaseComponent<FieldViewProps>() { this.mapBoxView.addPushpin(this.rootDoc); } componentWillUnmount() { - this.mapBoxView.removePushpin(this.rootDoc); + // this.mapBoxView.removePushpin(this.rootDoc); } |