From b72a089f3503519439668532f7db3a4a50b00dcd Mon Sep 17 00:00:00 2001 From: Tobias Date: Mon, 4 Mar 2024 19:25:53 +0100 Subject: [PATCH] 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 --- modules/ui/fields/wikidata.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/fields/wikidata.js b/modules/ui/fields/wikidata.js index 17d5dae88..5284ee10a 100644 --- a/modules/ui/fields/wikidata.js +++ b/modules/ui/fields/wikidata.js @@ -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); });