Skip to content

Commit 407c445

Browse files
committed
Fix browse section display of networks.
1 parent 3583af3 commit 407c445

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/app/components/browse/browse.component.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,8 @@ export class BrowseComponent implements OnInit {
561561
const edgesRaw = this.edgeTable.data();
562562

563563
const edges = [];
564-
for (const interaction of edgesRaw) {
564+
for (let i = 0; i < edgesRaw.length; i++) {
565+
const interaction = edgesRaw[i];
565566
const id = interaction[5]; // ID
566567
const source = interaction[0]; // Gene 1
567568
const target = interaction[1]; // Gene 2

0 commit comments

Comments
 (0)