diff --git a/assets/themes/atm/atm.json b/assets/themes/atm/atm.json index 33435e126..64ed8a4eb 100644 --- a/assets/themes/atm/atm.json +++ b/assets/themes/atm/atm.json @@ -79,7 +79,6 @@ "source": { "geoJson": "https://maproulette.org/api/v2/challenge/view/39519" }, - "calculatedTags": [ "_closest_osm_poi=closest(feat)('atm')?.properties?.id", "_closest_osm_poi_distance=Math.round(distanceTo(feat)(feat.properties._closest_osm_poi))", diff --git a/src/UI/SpecialVisualisations/TagApplyViz.ts b/src/UI/SpecialVisualisations/TagApplyViz.ts index e61f1d1af..a237e6026 100644 --- a/src/UI/SpecialVisualisations/TagApplyViz.ts +++ b/src/UI/SpecialVisualisations/TagApplyViz.ts @@ -94,10 +94,10 @@ export default class TagApplyViz implements AutoAction, SpecialVisualization { /** * Parses a tag specification * - * TagApplyButton.parseTagSpec("key=value;key0=value0") // => [["key","value"],["key0","value0"]] + * TagApplyViz.parseTagSpec("key=value;key0=value0") // => [["key","value"],["key0","value0"]] * * // Should handle escaped ";" - * TagApplyButton.parseTagSpec("key=value;key0=value0\\;value1") // => [["key","value"],["key0","value0;value1"]] + * TagApplyViz.parseTagSpec("key=value;key0=value0\\;value1") // => [["key","value"],["key0","value0;value1"]] */ private static parseTagSpec(spec: string): [string, string][] { const tgsSpec: [string, string][] = [] diff --git a/test/CodeQuality.spec.ts b/test/CodeQuality.spec.ts index 2cafdcad7..741d7f2fd 100644 --- a/test/CodeQuality.spec.ts +++ b/test/CodeQuality.spec.ts @@ -26,6 +26,7 @@ function detectInCodeUnwrapped(forbidden: string, reason: string): Promise "assets", "vendor", ".idea/", + "android/" ] const command =