Skip to content

Commit 2ec66e7

Browse files
committed
addressing comments
1 parent 25ae8f2 commit 2ec66e7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

qiita_pet/handlers/study_handlers/listing_handlers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ def _build_study_info(user, results=None):
9797
study.id, shared))
9898

9999
infolist.append({
100-
"checkbox": "<input type='checkbox' value='%d' />" % study.id,
100+
# "checkbox": "<input type='checkbox' value='%d' />" % study.id,
101+
'checkbox': '',
101102
"id": study.id,
102103
"title": title,
103104
"meta_complete": meta_complete,

qiita_pet/templates/list_studies.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
$("#submit-button").prop("disabled",true);
5757
$("#search-error").text('');
5858
query = $("#searchbox").val();
59-
$("#standard-studies-table").DataTable().ajax.url(ajaxURL + "&query=" + query).load(function() {$("#submit-button").prop("disabled",false);}, true);
59+
$("#studies-table").DataTable().ajax.url(ajaxURL + "&query=" + query).load(function() {$("#submit-button").prop("disabled",false);}, true);
6060
return false;
6161
});
6262
} );

0 commit comments

Comments
 (0)