From ac9b84d8d4855cebb16123ab64229355131de0e1 Mon Sep 17 00:00:00 2001 From: Nanda Date: Mon, 21 Oct 2024 10:36:45 +1100 Subject: [PATCH] Fixes CI error due to a @types/leaflet change. --- lib/Models/Leaflet.ts | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Models/Leaflet.ts b/lib/Models/Leaflet.ts index 91013dbdd7..6bc55a6e3e 100644 --- a/lib/Models/Leaflet.ts +++ b/lib/Models/Leaflet.ts @@ -198,7 +198,7 @@ export default class Leaflet extends GlobeOrMap { map.boxZoom, map.keyboard, map.dragging, - map.tap + map.tapHold ]); const pickLocation = this.pickLocation.bind(this); const pickFeature = (entity: Entity, event: L.LeafletMouseEvent) => { diff --git a/package.json b/package.json index a94d05e154..fd43252e2a 100644 --- a/package.json +++ b/package.json @@ -54,7 +54,7 @@ "@types/fs-extra": "^7.0.0", "@types/jasmine": "^2.8.8", "@types/jasmine-ajax": "^3.3.0", - "@types/leaflet": "^1.7.10", + "@types/leaflet": "^1.9.12", "@types/linkify-it": "^3.0.5", "@types/lodash-es": "^4.17.3", "@types/markdown-it": "^14.0.1",