From fa501696e59e90f511bcf18f9d96fa100aebace8 Mon Sep 17 00:00:00 2001 From: Martin Raifer Date: Mon, 24 Feb 2025 15:32:48 +0100 Subject: [PATCH] fix false-positive missing translation, for street+place subfield closes #10812 --- modules/ui/fields/address.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/fields/address.js b/modules/ui/fields/address.js index 27cdbb1d1..29dc0a5c4 100644 --- a/modules/ui/fields/address.js +++ b/modules/ui/fields/address.js @@ -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 + '%'; });