Field: Fix html tag type of wikidata label (#10144)

The `span` need to be a `div` after https://github.com/openstreetmap/iD/pull/10127/files
This commit is contained in:
Tobias
2024-03-04 19:25:53 +01:00
committed by GitHub
parent 6051e516e4
commit b72a089f35

View File

@@ -106,7 +106,7 @@ export function uiFieldWikidata(field, context) {
.attr('class', function(d) { return 'labeled-input preset-wikidata-' + d; });
enter
.append('span')
.append('div')
.attr('class', 'label')
.html(function(d) { return t.html('wikidata.' + d); });