From 0f387c9fcda6cea121d156d669f0d61253ebc202 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Sun, 19 May 2019 21:42:57 -0400 Subject: [PATCH] Include `office` key for name-suggestion-index matching In anticipation of https://github.com/osmlab/name-suggestion-index/issues/2634 --- modules/validations/outdated_tags.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/validations/outdated_tags.js b/modules/validations/outdated_tags.js index 052601445..10eb4d44d 100644 --- a/modules/validations/outdated_tags.js +++ b/modules/validations/outdated_tags.js @@ -15,7 +15,7 @@ export function validationOutdatedTags() { // initialize name-suggestion-index matcher var nsiMatcher = matcher(); nsiMatcher.buildMatchIndex(brands.brands); - var nsiKeys = ['amenity', 'shop', 'tourism', 'leisure']; + var nsiKeys = ['amenity', 'shop', 'tourism', 'leisure', 'office']; function oldTagIssues(entity, context) {