diff options
author | zsloan | 2021-07-08 21:35:02 +0000 |
---|---|---|
committer | zsloan | 2021-07-08 21:35:02 +0000 |
commit | 39f8e4198b2ce6e5859d46c2ba6c055636fafa5f (patch) | |
tree | d851f6826d77ddd85bed7b2dd4253930cbac8458 /wqflask | |
parent | cee6741951acb6e620d40e819088e4d2faea54ed (diff) | |
download | genenetwork2-39f8e4198b2ce6e5859d46c2ba6c055636fafa5f.tar.gz |
Set a reasonable starting width for genotype search results
Diffstat (limited to 'wqflask')
-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 3e4928df..e5eea4d1 100644 --- a/wqflask/wqflask/templates/search_result_page.html +++ b/wqflask/wqflask/templates/search_result_page.html @@ -125,7 +125,7 @@ {% endif %} </div> {% endif %} - <div id="table_container" style="width: 1350px;"> + <div id="table_container" style="width: {% if dataset.type == 'Geno' %}270{% else %}1350{% endif %}px;"> <table class="table-hover table-striped cell-border" id='trait_table' style="float: left;"> <tbody> <td colspan="100%" align="center"><br><b><font size="15">Loading...</font></b><br></td> |