Fixed issue when target = -1 in networkmap

This commit is contained in:
danielmaya 2018-04-18 14:51:38 +02:00
parent 292612f765
commit ecb483af1a

View File

@ -836,7 +836,7 @@ function networkmap_links_to_js_links($relations, $nodes_graph) {
$item['source'] = $node['id']; $item['source'] = $node['id'];
} }
} }
if (($item['target'] == -1) && ($item['source'] == -1) && $relation['parent_type'] == 1 && $relation['child_type'] == 1) { if ((($item['target'] == -1) || ($item['source'] == -1)) && $relation['parent_type'] == 1 && $relation['child_type'] == 1) {
continue; continue;
} }