Fixed raw_text undefined in networkmap
This commit is contained in:
parent
b92ec56140
commit
7327998985
|
@ -945,9 +945,9 @@ 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