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 8f70225 commit a3aaa89Copy full SHA for a3aaa89
1 file changed
src/features/Map/Map.jsx
@@ -799,6 +799,14 @@ class Map extends React.Component {
799
.setLngLat(coordinates)
800
.setHTML(`<div>${ncName}</div>`)
801
.addTo(this.map);
802
+
803
+ // Not sure if needed in the future:
804
+ // A z-index below 0 will have the popup appear underneath the map and therefore be invisible
805
+ // This popup still currently appears on top of the DatePicker and RequestDetail modal
806
+ if (this.ncPopup.getElement()) {
807
+ this.ncPopup.getElement().style.zIndex = '0';
808
+ }
809
810
};
811
812
handleNcMouseLeave = () => {
0 commit comments