Skip to content

Commit

Permalink
add space below tables in show cluster info
Browse files Browse the repository at this point in the history
  • Loading branch information
monicadragan2 committed Nov 6, 2024
1 parent 6d588a3 commit 0fedd09
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions oncotreevis.js
Original file line number Diff line number Diff line change
Expand Up @@ -1745,6 +1745,16 @@ function getMetadataTable(metadata_samples) {
tr.appendChild(td)
}
}
// Add 2 empty rows.
for (var idx of [1,2]) {
var tr = document.createElement('TR');
table.appendChild(tr);
var td = document.createElement('TD');
td.style.backgroundColor="rgba(0, 0, 0, 0)"
td.appendChild(document.createTextNode("."));
td.style.color="rgba(0, 0, 0, 0)"
tr.appendChild(td)
}
return table
}

Expand Down

0 comments on commit 0fedd09

Please sign in to comment.