diff options
author | zsloan | 2020-03-11 11:50:33 -0500 |
---|---|---|
committer | zsloan | 2020-03-11 11:50:33 -0500 |
commit | 79aec8e686e83d5f5ed3b65b450b44648c799d1e (patch) | |
tree | 09b719027b305aeb3f28b6819ec3bff122a49ec8 | |
parent | ae8c09f09739f434522d5e4948582b50ad423138 (diff) | |
download | genenetwork2-79aec8e686e83d5f5ed3b65b450b44648c799d1e.tar.gz |
Fixed issue that caused authors to be displayed incorrectly sometimes
-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 564d02ad..c11b2533 100644 --- a/wqflask/wqflask/templates/search_result_page.html +++ b/wqflask/wqflask/templates/search_result_page.html @@ -361,7 +361,7 @@ try { return decodeURIComponent(escape(author_string)) } catch(err){ - return escape(author_string) + return author_string } } }, |