This commit is contained in:
Jonathan 2024-04-08 14:11:52 +02:00
parent 0838afe8b1
commit 1fed8ffb09
1 changed files with 5 additions and 1 deletions

View File

@ -249,9 +249,13 @@ function fmModuleChange(uniqId, isMeta) {
? value["id_node"] + "|" + value["id_agente_modulo"] ? value["id_node"] + "|" + value["id_agente_modulo"]
: value["id_agente_modulo"] : value["id_agente_modulo"]
) )
.attr("title", value)
.html(value["nombre"]); .html(value["nombre"]);
} else { } else {
option.attr("value", id).html(value); option
.attr("value", id)
.attr("title", value)
.html(value);
} }
$("#filtered-module-modules-" + uniqId).append(option); $("#filtered-module-modules-" + uniqId).append(option);