From 0c243f0fa63963213d223b4193387226f9e0dc4a Mon Sep 17 00:00:00 2001 From: Oliver Stolpe Date: Fri, 14 Aug 2020 14:22:38 +0200 Subject: [PATCH] Fixed missing QC plots in case detail view. --- HISTORY.rst | 2 ++ variants/templates/variants/case_detail.html | 12 ++++++------ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 2e4d9dd6a..bbe2b1778 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -58,6 +58,7 @@ End-User Summary - Fixed bug where when re-importing a case, the sample variants stats computation was performed on the member list of the old case. This could lead to the inconsistent state that when new members where added, the stats were not available for them. This lead to a 500 error when displaying the case overview page. +- Fixed missing QC plots in case detail view. Full Change List ================ @@ -124,6 +125,7 @@ Full Change List - Fixed bug where when re-importing a case, the sample variants stats computation was performed on the member list of the old case. This could lead to the inconsistent state that when new members where added, the stats were not available for them. This lead to a 500 error when displaying the case overview page. +- Fixed missing QC plots in case detail view. ------- v0.21.0 diff --git a/variants/templates/variants/case_detail.html b/variants/templates/variants/case_detail.html index 473556904..e2fd64623 100644 --- a/variants/templates/variants/case_detail.html +++ b/variants/templates/variants/case_detail.html @@ -121,12 +121,12 @@

.then(function (response) { // Render plots after data has been loaded plotlyRelatedness(response, 'plot-relatedness') - {#plotlySexChrxHetHom(response, 'plot-sex-chrx-het-hom')#} - {#plotlyVarDps(response, 'plot-var-dps')#} - {#plotlyVariantTypes(response, 'plot-var-types')#} - {#plotlyVariantEffects(response, 'plot-var-effects')#} - {#plotlyIndelSizes(response, 'plot-indel-sizes')#} - {#setTimeout(function() { $(window).trigger('resize') }, 2000);#} + plotlySexChrxHetHom(response, 'plot-sex-chrx-het-hom') + plotlyVarDps(response, 'plot-var-dps') + plotlyVariantTypes(response, 'plot-var-types') + plotlyVariantEffects(response, 'plot-var-effects') + plotlyIndelSizes(response, 'plot-indel-sizes') + setTimeout(function() { $(window).trigger('resize') }, 2000); }) })