From 72266af1e5bc5127941960bec3398e87e55dc637 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Tue, 16 Apr 2019 09:59:00 -0700 Subject: [PATCH] Show case-sensitive taginfo results for Manufacturer field --- 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 0628de308..b1f849e49 100644 --- a/modules/services/taginfo.js +++ b/modules/services/taginfo.js @@ -290,7 +290,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/; + var re = /network|taxon|genus|species|brand|grape_variety|royal_cypher|listed_status|booth|rating|stars|:output|_hours|_times|manufacturer/; var allowUpperCase = (params.key.match(re) !== null); var f = filterValues(allowUpperCase);