aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/static
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-06-05 16:12:35 -0500
committerFrederick Muriuki Muriithi2024-06-05 16:12:35 -0500
commit2353817c57f676d01bc0e51cfd4d8dc8d46e1bb0 (patch)
tree01ff947df9d0c74852852a383c3ac4d55f33c259 /gn2/wqflask/static
parentab673637e9b321c54d273dabf7fb6777dc6a7685 (diff)
downloadgenenetwork2-2353817c57f676d01bc0e51cfd4d8dc8d46e1bb0.tar.gz
Build phenotype results template URI on backend
Build the template URI on the backend to remove the need to remember to update the javascript if the URI changes in the future.
Diffstat (limited to 'gn2/wqflask/static')
-rw-r--r--gn2/wqflask/static/new/javascript/auth/search_phenotypes.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/gn2/wqflask/static/new/javascript/auth/search_phenotypes.js b/gn2/wqflask/static/new/javascript/auth/search_phenotypes.js
index 99ecb16e..e9ef2683 100644
--- a/gn2/wqflask/static/new/javascript/auth/search_phenotypes.js
+++ b/gn2/wqflask/static/new/javascript/auth/search_phenotypes.js
@@ -96,8 +96,8 @@ function display_search_results(data, textStatus, jqXHR) {
* @param {UUID}: The job id to fetch data for
*/
function fetch_search_results(job_id, success, error=default_error_fn) {
- host = $("#frm-search-traits").attr("data-gn-server-url");
- endpoint = host + "auth/data/search/phenotype/" + job_id
+ endpoint = $("#frm-search-traits").attr(
+ "data-pheno-results-template").replace("<jobid>", job_id);
$("#txt-search").prop("disabled", true);
$.ajax(
endpoint,