diff options
author | zsloan | 2020-11-04 16:04:21 -0600 |
---|---|---|
committer | GitHub | 2020-11-04 16:04:21 -0600 |
commit | 14edb4e07a7689aac6187667064d719ecf68abbe (patch) | |
tree | 00e0511d23e80b489e185acb9ad25ff8094f5fb2 | |
parent | 510e66de705b90341cd773e666e51dfcf033a958 (diff) | |
parent | 1948d1ed9e8647b1f54c87a59aa308b9d22c7f8e (diff) | |
download | genenetwork2-14edb4e07a7689aac6187667064d719ecf68abbe.tar.gz |
Merge pull request #480 from zsloan/bug/correlation_sort_fix
Fix sorting on the Tissue and Literature r/rho columns in correlation page
-rw-r--r-- | wqflask/wqflask/templates/correlation_page.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wqflask/wqflask/templates/correlation_page.html b/wqflask/wqflask/templates/correlation_page.html index 134f15be..bc0b592c 100644 --- a/wqflask/wqflask/templates/correlation_page.html +++ b/wqflask/wqflask/templates/correlation_page.html @@ -367,8 +367,8 @@ { "orderDataType": "dom-innertext", 'orderSequence': [ "desc", "asc"] }, { "type": "natural" }, { "type": "scientific" }, - { "type": "numeric-html", 'orderSequence': [ "desc", "asc"] }, - { "type": "numeric-html", 'orderSequence': [ "desc", "asc"] }, + { "type": "natural-minus-na", 'orderSequence': [ "desc", "asc"] }, + { "type": "natural-minus-na", 'orderSequence': [ "desc", "asc"] }, { "type": "scientific" }, { "type": "natural-minus-na" }, { "type": "natural-minus-na" }, |