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:
commit
7cf5442070
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue