From 96a04476b2506d0e02a497308818d26b4f9f79f4 Mon Sep 17 00:00:00 2001 From: zsloan Date: Mon, 28 Oct 2024 20:19:37 +0000 Subject: Fix bug that caused scatterplot URLs to be wrong when accessing mapping via hash --- gn2/wqflask/templates/mapping_results.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gn2') diff --git a/gn2/wqflask/templates/mapping_results.html b/gn2/wqflask/templates/mapping_results.html index 8c7fec24..8e9879aa 100644 --- a/gn2/wqflask/templates/mapping_results.html +++ b/gn2/wqflask/templates/mapping_results.html @@ -416,7 +416,7 @@ 'data': null, 'render': function(data, type, row, meta) { {% if geno_db_exists == "True" %} - return '' + String(parseFloat(data.additive).toFixed(3)) + '' + return '' + String(parseFloat(data.additive).toFixed(3)) + '' {% else %} return String(parseFloat(data.additive).toFixed(3)) {% endif %} -- cgit v1.2.3