Fixed raw_text undefined in networkmap

This commit is contained in:
danielmaya 2018-04-03 12:25:51 +02:00
parent b92ec56140
commit 7327998985
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) $("#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) $("#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) $("#relations_table-template_row-edit", template_relation_row)
.attr("align", "center"); .attr("align", "center");
$("#relations_table-template_row-edit .delete_icon", template_relation_row) $("#relations_table-template_row-edit .delete_icon", template_relation_row)