diff --git a/pandora_console/operation/agentes/ver_agente.php b/pandora_console/operation/agentes/ver_agente.php index e2616b8d08..afe8e3e9f5 100644 --- a/pandora_console/operation/agentes/ver_agente.php +++ b/pandora_console/operation/agentes/ver_agente.php @@ -2063,6 +2063,10 @@ switch ($tab) { // I do not understand, nor do I agree with this operation, but it is what it is. $(document).ready (function () { $('.ehorus_tab').hover(ehorus_tab_show, ehorus_tab_hide); + // #9587 Doble find on agent view List modules and list of alerts. + $('#button-filter').on('click',function(){ + search_alerts_status(); + }); }); function ehorus_tab_show() { @@ -2074,4 +2078,9 @@ switch ($tab) { $('.subsubmenu').hide("fast"); },15000); } + + function search_alerts_status(){ + $('#text-free_search_alert').val($('#text-status_text_monitor').val()); + $('#form_alerts_status_datatable_search_bt').trigger('click'); + }