diff options
author | bobzel <zzzman@gmail.com> | 2023-08-26 22:54:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-26 22:54:10 -0400 |
commit | 9c90a9a12cc5ff7fdc8797684e9cc5561ae6354e (patch) | |
tree | dd42d6d83cdff5ffa824b7cc768e288d02cf4577 /src/client/views/nodes/MapBox/MapBoxInfoWindow.tsx | |
parent | 603e437d4964c2f104a04f4f977802e241347344 (diff) | |
parent | ffb910a768c75df57e9d7bca15aca67e9216b025 (diff) |
Merge pull request #165 from brown-dash/UI_Update_Eric_Ma
eric maps
Diffstat (limited to 'src/client/views/nodes/MapBox/MapBoxInfoWindow.tsx')
-rw-r--r-- | src/client/views/nodes/MapBox/MapBoxInfoWindow.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/views/nodes/MapBox/MapBoxInfoWindow.tsx b/src/client/views/nodes/MapBox/MapBoxInfoWindow.tsx index 577101445..66c47d131 100644 --- a/src/client/views/nodes/MapBox/MapBoxInfoWindow.tsx +++ b/src/client/views/nodes/MapBox/MapBoxInfoWindow.tsx @@ -47,7 +47,9 @@ export class MapBoxInfoWindow extends React.Component<MapBoxInfoWindowProps & Vi removeDoc = (doc: Doc | Doc[]) => (doc instanceof Doc ? [doc] : doc).reduce((p, d) => p && Doc.RemoveDocFromList(this.props.place, 'data', d), true as boolean); render() { return ( - <InfoWindow anchor={this.props.markerMap[this.props.place[Id]]} onCloseClick={this.handleInfoWindowClose}> + <InfoWindow + // anchor={this.props.markerMap[this.props.place[Id]]} + onCloseClick={this.handleInfoWindowClose}> <div className="mapbox-infowindow"> <div style={{ width: this.props.PanelWidth(), height: this.props.PanelHeight() }}> <CollectionStackingView |