From d7bbbd0017193a8f3c08a9e2e93fdf5130513d4b Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Fri, 13 Sep 2019 08:45:51 -0400 Subject: [PATCH] Suggest uppercase `target` field values from taginfo --- modules/services/taginfo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/taginfo.js b/modules/services/taginfo.js index 246b443ce..0ecbb6c71 100644 --- a/modules/services/taginfo.js +++ b/modules/services/taginfo.js @@ -299,7 +299,7 @@ export default { // A few OSM keys expect values to contain uppercase values (see #3377). // This is not an exhaustive list (e.g. `name` also has uppercase values) // but these are the fields where taginfo value lookup is most useful. - var re = /network|taxon|genus|species|brand|grape_variety|royal_cypher|listed_status|booth|rating|stars|:output|_hours|_times|_ref|manufacturer|country/; + var re = /network|taxon|genus|species|brand|grape_variety|royal_cypher|listed_status|booth|rating|stars|:output|_hours|_times|_ref|manufacturer|country|target/; var allowUpperCase = re.test(params.key); var f = filterValues(allowUpperCase);