diff --git a/src/services/tagging/idTaggingScheme.ts b/src/services/tagging/idTaggingScheme.ts index 481aaf4a3..c44878c44 100644 --- a/src/services/tagging/idTaggingScheme.ts +++ b/src/services/tagging/idTaggingScheme.ts @@ -27,11 +27,11 @@ const getUiField = ( feature: Feature, key: string, ): UiField => { - // TODO this should be removed now the parsing works ok - // if (field.type === 'typeCombo') { - // keysTodo.remove(field.key); // ignores eg. railway=tram_stop on public_transport=stop_position - // return undefined; - // } + // TODO this should be removed now the parsing works ok (+run tests) + if (field.type === 'typeCombo') { + keysTodo.remove(field.key); // ignores eg. railway=tram_stop on public_transport=stop_position + return undefined; + } const value = feature.tags[key];