Skip to content

Commit

Permalink
Merge pull request #243 from Clinical-Genomics/broader_report_error_p…
Browse files Browse the repository at this point in the history
…anel

Fix tipo in report template causing cramped error message
  • Loading branch information
northwestwitch authored Mar 7, 2024
2 parents 54ce610 + cd330e6 commit 54e7c82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
- `coverage.d4_interval_coverage` endpoint crashing trying to computer coverage completeness over an entire chromosome
- Samples mean coverage values a hundredfold higher on coverage reports
- Install software packages using poetry v<1.8 to avoid problems installing pyd4 (pyd4 not supporting PEP 517 builds)
- Typo in report template with unclosed span/div causing cramped genes not found message

## [1.4]
### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/chanjo2/templates/report.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{% macro errors_block() %}
{% for error_description, error_content in errors %}
{% if error_content %}
<span class="alert alert-danger">{{error_description}}: {{error_content|join(", ")}}</span>
<div class="alert alert-danger">{{error_description}}: {{error_content|join(", ")}}</div>
{% endif %}
{% endfor %}
{% endmacro %}
Expand Down

0 comments on commit 54e7c82

Please sign in to comment.