[freeside-commits] branch FREESIDE_4_BRANCH updated. b23875a21c163310af2597424f3b4e782ffcf022
Ivan Kohler
ivan at freeside.biz
Wed Apr 27 20:58:55 PDT 2022
The branch, FREESIDE_4_BRANCH has been updated
via b23875a21c163310af2597424f3b4e782ffcf022 (commit)
from 529b2019dc860419dfaff52ed497af12adfad7a3 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit b23875a21c163310af2597424f3b4e782ffcf022
Author: Ivan Kohler <ivan at freeside.biz>
Date: Wed Apr 27 20:58:54 2022 -0700
restore correct workflow when no census match is found: offer map-based picker, RT#86245, RT#76968
diff --git a/httemplate/elements/standardize_locations.js b/httemplate/elements/standardize_locations.js
index 77c709a49..8de103e3f 100644
--- a/httemplate/elements/standardize_locations.js
+++ b/httemplate/elements/standardize_locations.js
@@ -325,6 +325,12 @@ function set_censustract(tract, year) {
var form = document.<% $formname %>;
form.elements['censustract'].value = tract;
form.elements['censusyear'].value = year;
+
+ var enter = form.elements['enter_censustract'];
+ if ( enter ) {
+ enter.value = tract;
+ }
+
<% $post_censustract %>;
}
-----------------------------------------------------------------------
Summary of changes:
httemplate/elements/standardize_locations.js | 6 ++++++
1 file changed, 6 insertions(+)
More information about the freeside-commits
mailing list