Skip to content

Commit 03a086f

Browse files
Fix z-index in any case
1 parent b986d02 commit 03a086f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/iotMapManager/src/iot-map-marker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export class IotMapMarker extends IotMapDisplay {
5050
public select (selected: boolean): void {
5151
this.selected = selected
5252
this.setIcon(getMarkerIcon(this.data, this.config, selected))
53-
this.setZIndexOffset((selected) ? 100 : 0)
53+
this.setZIndexOffset((selected) ? 1000000 : 0)
5454
}
5555

5656
public getData (): IotMarker {

0 commit comments

Comments
 (0)