From 4d8ab31fd51d9c3ff7334dacd4212854f5316d2d Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Wed, 5 Jan 2022 07:37:27 +0300 Subject: Provide missing argument Issue: https://github.com/genenetwork/gn-gemtext-threads/blob/main/topics/gn1-migration-to-gn2/partial-correlations.gmi --- wqflask/wqflask/static/new/javascript/partial_correlations.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wqflask/wqflask/static/new/javascript/partial_correlations.js b/wqflask/wqflask/static/new/javascript/partial_correlations.js index a6121627..1cfb655e 100644 --- a/wqflask/wqflask/static/new/javascript/partial_correlations.js +++ b/wqflask/wqflask/static/new/javascript/partial_correlations.js @@ -117,7 +117,7 @@ function display_publish_results(primary, controls, correlations, method) { table_body.removeChild(template_row); } -function display_geno_results(primary, controls, correlations) { +function display_geno_results(primary, controls, correlations, method) { table = document.getElementById("part-corr-results-geno"); table.setAttribute("style", "display: block;"); table_body = document.querySelector("#part-corr-results-geno tbody"); @@ -152,7 +152,7 @@ function display_geno_results(primary, controls, correlations) { table_body.removeChild(template_row); } -function display_probeset_results(primary, controls, correlations) { +function display_probeset_results(primary, controls, correlations, method) { table = document.getElementById("part-corr-results-probeset"); table.setAttribute("style", "display: block;"); table_body = document.querySelector("#part-corr-results-probeset tbody"); -- cgit v1.2.3