Update the javascript for the entity forms
Replaced once('geoEntityGeocodeLeaflet', document.getElementById(formId)).forEach(function (form) { with once('geoEntityGeocodeLeaflet', document.querySelectorAll('form[id^="' + formId + '"]')).forEach(function (form) { This is on a directory venue page with the popup entity form for when editing a geo_entities location the map pin does not update with a geo_coded address, this fixes the console warnings raised and allows the pin to update. Closes #3480411