diff options
author | zsloan | 2021-03-11 23:08:43 +0000 |
---|---|---|
committer | zsloan | 2021-06-18 19:31:27 +0000 |
commit | aa3625be807a661e44c7f0c62a539eec27ccca46 (patch) | |
tree | 10744194ac4db254ac0cb7f848e964a90d43998d | |
parent | 8d0513d9c667f076bca1c54037bab740b04c1bbd (diff) | |
download | genenetwork2-aa3625be807a661e44c7f0c62a539eec27ccca46.tar.gz |
Set scrollX in all cases so the adjustablee columns also work for shorter results that don't use Scroller (<20 results)
-rw-r--r-- | wqflask/wqflask/templates/search_result_page.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/templates/search_result_page.html b/wqflask/wqflask/templates/search_result_page.html index 6321c687..06322a86 100644 --- a/wqflask/wqflask/templates/search_result_page.html +++ b/wqflask/wqflask/templates/search_result_page.html @@ -405,9 +405,9 @@ "autoWidth": false, "deferRender": true, "bSortClasses": false, + "scrollX": true, {% if trait_list|length > 20 %} "scrollY": "500px", - "scrollX": true, "scroller": true, "scrollCollapse": true, {% else %} |