link label of address field to housenumber input element

this makes the most sense, as it should be almost always present in the address field and be the most "unique/important" value to edit for an address

closes #11004
This commit is contained in:
Martin Raifer
2025-04-29 14:39:14 +02:00
parent 7385654df1
commit 6798f33598

View File

@@ -268,6 +268,7 @@ export function uiFieldAddress(field, context) {
.enter()
.append('input')
.property('type', 'text')
.attr('id', d => d.id === 'housenumber' ? field.domId : null)
.attr('class', function (d) { return 'addr-' + d.id; })
.call(utilNoAuto)
.each(addDropdown)