mirror of
https://github.com/FoggedLens/iD.git
synced 2026-04-29 07:06:04 +02:00
Merge pull request #5399 from quincylvania/osm-type-label-incomplete-relation-member
Adds the member geometry type to the label of non-downloaded relation members
This commit is contained in:
@@ -141,7 +141,14 @@ export function uiRawMemberEditor(context) {
|
||||
|
||||
} else {
|
||||
var incompleteLabel = d3_select(this).append('label')
|
||||
.attr('class', 'form-label')
|
||||
.attr('class', 'form-label');
|
||||
|
||||
incompleteLabel.append('span')
|
||||
.attr('class', 'member-entity-type')
|
||||
.text(t('inspector.'+d.type, { id: d.id }));
|
||||
|
||||
incompleteLabel.append('span')
|
||||
.attr('class', 'member-entity-name')
|
||||
.text(t('inspector.incomplete', { id: d.id }));
|
||||
|
||||
var wrap = incompleteLabel.append('div')
|
||||
|
||||
Reference in New Issue
Block a user