From 95ae3c3abe6f08b4b4e5f52dd6ee019ed647d238 Mon Sep 17 00:00:00 2001 From: Antonio de la Rosa Date: Mon, 12 Feb 2024 22:22:15 +0100 Subject: [PATCH] Fixes in formsutils --- formsutils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/formsutils.js b/formsutils.js index 4e38a62..6844537 100644 --- a/formsutils.js +++ b/formsutils.js @@ -7,8 +7,8 @@ function fillI18nForm(name_form, i18n_object) { const [key, value] = entry; - //$('#'+name_form+'_form_'+key+'_form').val(value); - document.getElementById(name_form+'_form_'+key+'_form').value=value; + $('#'+name_form+'_form_'+key+'_form').val(value); + //document.getElementById(name_form+'_form_'+key+'_form').value=value; });