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 + '%'; });