Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Chiara Rasi committed Sep 27, 2024
1 parent 2817b0a commit 12ba936
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
- Update pytest to v.7.4.4 to address a `ReDoS` vulnerability
- Colored logs
- Link for switching between coverage thresholds on overview report
- Gene links in genes overview page open into new tabs

## [1.9]
### Added
Expand Down
4 changes: 3 additions & 1 deletion src/chanjo2/templates/overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
{% for row in incomplete_coverage_rows %}
<tr>
<td>
<a href="#" onclick="getGeneStatsPage({{row[1]}});" target="_blank" rel="noopener">
<a href="#" onclick="getGeneStatsPage({{row[1]}});">
{{row[0]}}
</a>
</td>
Expand Down Expand Up @@ -120,6 +120,8 @@ <h4>Incomplete {{ extras.interval_type }}</h4>
geneInput.setAttribute("name", "hgnc_gene_id");
geneInput.setAttribute("value", hgncId);
theForm.appendChild(geneInput);
theForm.setAttribute("target", "_blank");
theForm.setAttribute("rel", "noopener");
theForm.submit();
}
</script>
Expand Down

0 comments on commit 12ba936

Please sign in to comment.