Merge branch 'ent-13637-vista-monitor-detail-muestra-informacion-erronea-cuando-la-busqueda-no-devuelve-nada' into 'develop'
Ent 13637 vista monitor detail muestra informacion erronea cuando la busqueda no devuelve nada See merge request artica/pandorafms!7283
This commit is contained in:
commit
b26257a4b2
|
@ -2387,7 +2387,11 @@ if (empty($result) === false) {
|
|||
$tablePagination = ui_pagination($count_modules, false, $offset, 0, true, 'offset', $show_count);
|
||||
}
|
||||
} else {
|
||||
ui_print_info_message(['no_close' => true, 'message' => __('Please apply a filter to display the data')]);
|
||||
if (get_parameter('ag_group', false) !== false) {
|
||||
ui_print_info_message(['no_close' => true, 'message' => __('There are no monitors with these features or status')]);
|
||||
} else {
|
||||
ui_print_info_message(['no_close' => true, 'message' => __('Please apply a filter to display the data')]);
|
||||
}
|
||||
}
|
||||
|
||||
if (isset($tablePagination) === false) {
|
||||
|
|
Loading…
Reference in New Issue