Merge branch '2122-Nodo-origen-y-destino-en-las-relaciones-de-los-mapas-de-red-dev' into 'develop'

Fixed raw_text undefined in networkmap

See merge request artica/pandorafms!1405
This commit is contained in:
vgilc 2018-04-03 13:04:57 +02:00
commit 7cf5442070
1 changed files with 3 additions and 3 deletions

View File

@ -943,11 +943,11 @@ function load_interfaces(selected_links) {
}
}
});
$("#relations_table-template_row-node_source", template_relation_row)
.html(link_each.source['raw_text']);
.html(link_each.source['raw_text'] != 'undefined' ? link_each.source['text'] : link_each.source['raw_text']);
$("#relations_table-template_row-node_target", template_relation_row)
.html(link_each.target['raw_text']);
.html(link_each.target['raw_text'] != 'undefined' ? link_each.target['text'] : link_each.target['raw_text']);
$("#relations_table-template_row-edit", template_relation_row)
.attr("align", "center");
$("#relations_table-template_row-edit .delete_icon", template_relation_row)