diff options
-rw-r--r-- | wqflask/wqflask/templates/correlation_page.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/wqflask/wqflask/templates/correlation_page.html b/wqflask/wqflask/templates/correlation_page.html index be43e076..34250a37 100644 --- a/wqflask/wqflask/templates/correlation_page.html +++ b/wqflask/wqflask/templates/correlation_page.html @@ -359,7 +359,6 @@ { 'title': "Abbreviation", 'type': "natural", - 'width': "200px", 'data': null, 'render': function(data) { try { @@ -453,7 +452,7 @@ { 'title': "Peak Location", 'type': "natural-minus-na", - 'width': "125px", + 'width': "160px", 'data': "lrs_location" }, { @@ -510,6 +509,9 @@ } } ], + {% if table_json|length > 2000 %} + "scroller": false, + {% endif %} {% if target_dataset.type == 'Geno' %} "order": [[6, "asc" ]], {% elif target_dataset.type == 'Publish' %} |