diff options
author | zsloan | 2019-06-09 20:17:38 -0500 |
---|---|---|
committer | zsloan | 2019-06-09 20:17:38 -0500 |
commit | 573b9e154244da07c1ac639b4158cfba74cec180 (patch) | |
tree | d035590b88d5529c27927774dd79be340ee1df69 /wqflask | |
parent | a5f6f1e7a892b16922eb2467950fa5145894c759 (diff) | |
download | genenetwork2-573b9e154244da07c1ac639b4158cfba74cec180.tar.gz |
Issue with encoding should be fixed for both global searches now
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/templates/gsearch_gene.html | 6 | ||||
-rw-r--r-- | wqflask/wqflask/templates/gsearch_pheno.html | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/wqflask/wqflask/templates/gsearch_gene.html b/wqflask/wqflask/templates/gsearch_gene.html index 4672f161..9984c0b6 100644 --- a/wqflask/wqflask/templates/gsearch_gene.html +++ b/wqflask/wqflask/templates/gsearch_gene.html @@ -158,7 +158,11 @@ 'type': "natural", 'data': null, 'render': function(data, type, row, meta) { - return decodeURIComponent(escape(data.description)) + try { + return decodeURIComponent(escape(data.description)) + } catch { + return escape(data.description)) + } } }, { diff --git a/wqflask/wqflask/templates/gsearch_pheno.html b/wqflask/wqflask/templates/gsearch_pheno.html index 7e2e6997..a34c2796 100644 --- a/wqflask/wqflask/templates/gsearch_pheno.html +++ b/wqflask/wqflask/templates/gsearch_pheno.html @@ -136,7 +136,7 @@ 'render': function(data, type, row, meta) { try { return decodeURIComponent(escape(data.description)) - } except { + } catch { return escape(data.description) } } |