mirror of
https://github.com/FoggedLens/iD.git
synced 2026-06-02 13:11:41 +02:00
Merge remote-tracking branch 'origin/housenumber-labels' into develop
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { isEqual } from 'lodash';
|
||||
import { isEqual } from 'lodash-es';
|
||||
|
||||
import { actionAddMidpoint } from '../actions/add_midpoint';
|
||||
import { actionChangeTags } from '../actions/change_tags';
|
||||
@@ -447,8 +447,8 @@ export function validationCrossingWays(context) {
|
||||
var entity1 = graph.hasEntity(this.entityIds[0]),
|
||||
entity2 = graph.hasEntity(this.entityIds[1]);
|
||||
return (entity1 && entity2) ? t.append('issues.crossing_ways.message', {
|
||||
feature: utilDisplayLabel(entity1, graph),
|
||||
feature2: utilDisplayLabel(entity2, graph)
|
||||
feature: utilDisplayLabel(entity1, graph, featureType1 === 'building'),
|
||||
feature2: utilDisplayLabel(entity2, graph, featureType2 === 'building')
|
||||
}) : '';
|
||||
},
|
||||
reference: showReference,
|
||||
|
||||
Reference in New Issue
Block a user