diff --git a/pandora_console/include/javascript/multiselect_filtered.js b/pandora_console/include/javascript/multiselect_filtered.js index fd2ab9fe46..08fabc4c88 100644 --- a/pandora_console/include/javascript/multiselect_filtered.js +++ b/pandora_console/include/javascript/multiselect_filtered.js @@ -249,9 +249,13 @@ function fmModuleChange(uniqId, isMeta) { ? value["id_node"] + "|" + value["id_agente_modulo"] : value["id_agente_modulo"] ) + .attr("title", value) .html(value["nombre"]); } else { - option.attr("value", id).html(value); + option + .attr("value", id) + .attr("title", value) + .html(value); } $("#filtered-module-modules-" + uniqId).append(option);