From 03b5cbdb62153383ace2d05dfc148802fb2b4697 Mon Sep 17 00:00:00 2001 From: danielmaya Date: Thu, 26 Apr 2018 12:29:11 +0200 Subject: [PATCH] Fixed issue in networkmap --- .../include/javascript/functions_pandora_networkmap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/javascript/functions_pandora_networkmap.js b/pandora_console/include/javascript/functions_pandora_networkmap.js index e26aa6c730..b5a85ee5c3 100644 --- a/pandora_console/include/javascript/functions_pandora_networkmap.js +++ b/pandora_console/include/javascript/functions_pandora_networkmap.js @@ -114,7 +114,7 @@ function get_relations(node_param) { var links_id_db = []; jQuery.each(graph.links, function (i, link_each) { - if (node_param.id == link_each.source.id || node_param.id == link_each.target.id) {vo + if (node_param.id == link_each.source.id || node_param.id == link_each.target.id) { if(links_id_db.length > 0){ if(links_id_db.indexOf(link_each.id_db) == -1){ return_links.push(link_each);