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
1 changed files with 1 additions and 1 deletions

View File

@ -836,7 +836,7 @@ function networkmap_links_to_js_links($relations, $nodes_graph) {
$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;
}