fix false-positive missing translation, for street+place subfield

closes #10812
This commit is contained in:
Martin Raifer
2025-02-24 15:32:48 +01:00
parent 6b6cce65db
commit fa501696e5

View File

@@ -187,10 +187,10 @@ export function uiFieldAddress(field, context) {
.enter()
.append('input')
.property('type', 'text')
.call(updatePlaceholder)
.attr('class', function (d) { return 'addr-' + d.id; })
.call(utilNoAuto)
.each(addDropdown)
.call(updatePlaceholder)
.style('width', function (d) { return d.width * 100 + '%'; });