summaryrefslogtreecommitdiff
path: root/resources/views/modules/GEDFact_assistant
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2022-12-23 14:26:22 +0000
committerGreg Roach <greg@subaqua.co.uk>2022-12-23 14:26:37 +0000
commitfca408422158df832c5a18485ea01e348aebd21a (patch)
tree0342ed4d2a1867bf92687abbc2209fb8bf9e759b /resources/views/modules/GEDFact_assistant
parent5d82b026d9145f5fe6b36bb1994e454901f534be (diff)
downloadwebtrees-fca408422158df832c5a18485ea01e348aebd21a.tar.gz
webtrees-fca408422158df832c5a18485ea01e348aebd21a.tar.bz2
webtrees-fca408422158df832c5a18485ea01e348aebd21a.zip
Fix: #4654 - expand/collapse edit fields wrongly linked
Diffstat (limited to 'resources/views/modules/GEDFact_assistant')
-rw-r--r--resources/views/modules/GEDFact_assistant/select-census.phtml4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/views/modules/GEDFact_assistant/select-census.phtml b/resources/views/modules/GEDFact_assistant/select-census.phtml
index 225e56a959..30a283f412 100644
--- a/resources/views/modules/GEDFact_assistant/select-census.phtml
+++ b/resources/views/modules/GEDFact_assistant/select-census.phtml
@@ -35,8 +35,8 @@ use Fisharebest\Webtrees\I18N;
const option = select.options[select.selectedIndex];
const form = select.closest('form');
- form.querySelector('[id$=CENS\\3a DATE]').value = option.dataset.wtDate;
- form.querySelector('[id$=CENS\\3a PLAC]').value = option.dataset.wtPlace;
+ form.querySelector('[id$=CENS-DATE]').value = option.dataset.wtDate;
+ form.querySelector('[id$=CENS-PLAC]').value = option.dataset.wtPlace;
});
});
</script>