diff options
| author | John Nduli | 2024-07-04 17:31:01 +0300 |
|---|---|---|
| committer | Alexander_Kabui | 2024-08-28 15:02:45 +0300 |
| commit | d9623d35fc2f99d584b80d01044b257d3c626cb7 (patch) | |
| tree | 6b666c09a15f804cae3d5f5e84826f5e604af539 | |
| parent | e717829b2bb90123905d6e64215b636f1871c09e (diff) | |
| download | genenetwork2-d9623d35fc2f99d584b80d01044b257d3c626cb7.tar.gz | |
fix: correct javascript if statement
| -rw-r--r-- | gn2/wqflask/templates/gsearch_gene.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn2/wqflask/templates/gsearch_gene.html b/gn2/wqflask/templates/gsearch_gene.html index ffab9b8c..c5575699 100644 --- a/gn2/wqflask/templates/gsearch_gene.html +++ b/gn2/wqflask/templates/gsearch_gene.html @@ -259,7 +259,7 @@ {% endif %} } - if traitsJson.length > 0 { + if (traitsJson.length > 0) { create_table(tableId, traitsJson, columnDefs, tableSettings); } |
